MainWindow.xaml 1.0 KB

123456789101112131415161718
  1. <Window
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:WpfApp2"
  7. xmlns:dxre="http://schemas.devexpress.com/winfx/2008/xaml/richedit" x:Class="WpfApp2.MainWindow"
  8. mc:Ignorable="d"
  9. Title="MainWindow" Height="450" Width="800" MinWidth="800" MinHeight="450" FontFamily="Tahoma" FontSize="16">
  10. <StackPanel x:Name="StackPanel1" Orientation="Vertical">
  11. <StackPanel Orientation="Horizontal" UseLayoutRounding="False" Margin="0,0,0,40">
  12. <TextBox Grid.ColumnSpan="2" Width="360"/>
  13. <ComboBox Name="ComboBox1" Grid.ColumnSpan="2" Width="200" Margin="10,0,0,0"></ComboBox>
  14. <ComboBox Grid.ColumnSpan="2" Width="200" Margin="10,0,0,0"></ComboBox>
  15. </StackPanel>
  16. </StackPanel>
  17. </Window>