FormFieldCombox.xaml 651 B

12345678910111213141516
  1. <UserControl
  2. x:Class="PDF_Master.CustomControl.Form.FormFieldCombox"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PDF_Master.CustomControl.Form"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. d:DesignHeight="450"
  9. d:DesignWidth="800"
  10. mc:Ignorable="d">
  11. <ComboBox
  12. Name="Combox"
  13. VerticalContentAlignment="Center"
  14. SelectedIndex="0"
  15. SelectionChanged="Combox_SelectionChanged" />
  16. </UserControl>