SettingsDialog.xaml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. />
  27. </GroupBox.Header>
  28. </GroupBox>
  29. </StackPanel>
  30. </ScrollViewer>
  31. <StackPanel
  32. VerticalAlignment="Bottom"
  33. Orientation="Horizontal"
  34. HorizontalAlignment="Right"
  35. Margin="7,7,7,8"
  36. >
  37. <Button
  38. Content="OK"
  39. Margin="0,0,6,0"
  40. Width="73"
  41. IsDefault="True"
  42. Click="OkButton_Click"
  43. />
  44. <Button
  45. Content="Cancel"
  46. Margin="0,0,6,0"
  47. Width="73"
  48. IsCancel="True"
  49. />
  50. <Button
  51. Content="_Apply"
  52. Margin="0,0,0,0"
  53. Width="73"
  54. IsEnabled="False"
  55. Click="ApplyButton_Click"
  56. />
  57. </StackPanel>
  58. </Grid>
  59. </Window>