SettingsDialog.xaml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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="SettingsDialog"
  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 Name="SettingsPanel">
  21. <GroupBox>
  22. <GroupBox.Header>
  23. <RadioButton
  24. Content="Find the first suitable SSH application"
  25. GroupName="Handlers"
  26. IsChecked="True"
  27. />
  28. </GroupBox.Header>
  29. </GroupBox>
  30. </StackPanel>
  31. </ScrollViewer>
  32. <StackPanel
  33. VerticalAlignment="Bottom"
  34. Orientation="Horizontal"
  35. HorizontalAlignment="Right"
  36. Margin="7,7,7,8"
  37. >
  38. <Button
  39. Content="OK"
  40. Margin="0,0,6,0"
  41. Width="73"
  42. IsDefault="True"
  43. Click="OkButton_Click"
  44. />
  45. <Button
  46. Content="Cancel"
  47. Margin="0,0,6,0"
  48. Width="73"
  49. IsCancel="True"
  50. />
  51. <Button
  52. Content="_Apply"
  53. Margin="0,0,0,0"
  54. Width="73"
  55. IsEnabled="False"
  56. Click="ApplyButton_Click"
  57. />
  58. </StackPanel>
  59. </Grid>
  60. </Window>