WorkArea.xaml 1013 B

12345678910111213141516171819202122
  1. <UserControl x:Class="AlarmInfoServerSim.Views.WorkArea"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:AlarmInfoServerSim.Views"
  7. xmlns:prism="http://prismlibrary.com/"
  8. prism:ViewModelLocator.AutoWireViewModel="True"
  9. Width="600" Height="350"
  10. mc:Ignorable="d">
  11. <Grid Background="#FFCECECE" Margin="5,0,5,0">
  12. <Grid.ColumnDefinitions>
  13. <ColumnDefinition Width="300" />
  14. <ColumnDefinition Width="*"/>
  15. </Grid.ColumnDefinitions>
  16. <StackPanel Grid.Column="0" Orientation="Vertical">
  17. </StackPanel>
  18. <Button Grid.Column="1" Content="Send" Margin="70,50,70,260"/>
  19. </Grid>
  20. </UserControl>