SshHandlerSettings.xaml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. <ScrollViewer
  13. VerticalAlignment="Top"
  14. HorizontalAlignment="Left"
  15. Height="430"
  16. Width="410"
  17. Margin="6,7,0,0"
  18. VerticalScrollBarVisibility="Auto"
  19. >
  20. <StackPanel>
  21. <RadioButton
  22. Content="Find the first suitable SSH application"
  23. />
  24. </StackPanel>
  25. </ScrollViewer>
  26. <StackPanel
  27. VerticalAlignment="Bottom"
  28. Orientation="Horizontal"
  29. HorizontalAlignment="Right"
  30. Margin="7,7,7,8"
  31. >
  32. <Button
  33. Content="OK"
  34. Margin="0,0,6,0"
  35. Width="73"
  36. IsDefault="True"
  37. Click="OkButton_Click"
  38. />
  39. <Button
  40. Content="Cancel"
  41. Margin="0,0,6,0"
  42. Width="73"
  43. IsCancel="True"
  44. />
  45. <Button
  46. Content="_Apply"
  47. Margin="0,0,0,0"
  48. Width="73"
  49. IsEnabled="False"
  50. Click="ApplyButton_Click"
  51. />
  52. </StackPanel>
  53. </Grid>
  54. </Window>