OptionalExecutablePanel.xaml 843 B

1234567891011121314151617181920212223242526272829
  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="OptionalExecutablePanel"
  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. <toolkit:AutoCompleteBox
  22. Name="SettingExecutableBox"
  23. />
  24. <Button
  25. Name="SettingExecutableBrowse"
  26. Content="Browse..."
  27. />
  28. </StackPanel>
  29. </StackPanel>