SshHandlerSettings.xaml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <Window
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. x:Class="SshHandlerSettings"
  6. Title="SSH Handler Settings"
  7. Height="510"
  8. Width="437"
  9. ResizeMode="NoResize"
  10. >
  11. <Grid>
  12. <StackPanel
  13. VerticalAlignment="Bottom"
  14. Orientation="Horizontal"
  15. HorizontalAlignment="Right"
  16. Margin="7,7,7,8"
  17. >
  18. <Button
  19. Content="OK"
  20. Margin="0,0,6,0"
  21. Width="73"
  22. IsDefault="True"
  23. />
  24. <Button
  25. Content="Cancel"
  26. Margin="0,0,6,0"
  27. Width="73"
  28. IsCancel="True"
  29. />
  30. <Button
  31. Content="_Apply"
  32. Margin="0,0,0,0"
  33. Width="73"
  34. IsEnabled="False"
  35. />
  36. </StackPanel>
  37. </Grid>
  38. </Window>