OptionalYesNoDirectoryPanel.xaml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <StackPanel
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:toolkit="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Input.Toolkit"
  6. x:Class="OptionalYesNoDirectoryPanel"
  7. >
  8. <Label>
  9. <TextBlock
  10. Name="SettingUsage"
  11. TextWrapping="Wrap"
  12. />
  13. </Label>
  14. <StackPanel
  15. Orientation="Horizontal"
  16. >
  17. <CheckBox
  18. Name="SettingCheckBox"
  19. Content="Executable:"
  20. />
  21. <RadioButton
  22. Name="SettingYes"
  23. Content="Yes"
  24. />
  25. <RadioButton
  26. Name="SettingNo"
  27. Content="No"
  28. />
  29. <RadioButton
  30. Name="SettingDirectory"
  31. Content="Directory:"
  32. />
  33. <toolkit:AutoCompleteBox
  34. Name="SettingDirectoryBox"
  35. />
  36. <Button
  37. Name="SettingDirectoryBrowse"
  38. Content="Browse..."
  39. />
  40. </StackPanel>
  41. </StackPanel>