| 12345678910111213141516171819202122 |
- <UserControl x:Class="AlarmInfoServerSim.Views.WorkArea"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:AlarmInfoServerSim.Views"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- Width="600" Height="350"
- mc:Ignorable="d">
- <Grid Background="#FFCECECE" Margin="5,0,5,0">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="300" />
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <StackPanel Grid.Column="0" Orientation="Vertical">
-
- </StackPanel>
- <Button Grid.Column="1" Content="Send" Margin="70,50,70,260"/>
- </Grid>
- </UserControl>
|