SetWindowWaitControl.xaml
上传用户:lvyingde
上传日期:2018-04-24
资源大小:610k
文件大小:3k
- <UserControl x:Class="wxwinter.WFDesignerSl.SetWindowWaitControl"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Width="400" Height="300">
- <Canvas Name="LayoutRoot" Background="#7E959191" Width="800" Height="650">
- <Border BorderThickness="0,0,0,0" CornerRadius="20,20,20,20" Width="600" Height="300" Canvas.Top="130" Canvas.Left="100">
- <Border.Background>
- <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
- <GradientStop Color="#FFE1EFF4"/>
- <GradientStop Color="#FF19B6F4" Offset="1"/>
- <GradientStop Color="#FF54C2EE" Offset="0.411"/>
- <GradientStop Color="#FFCACACA" Offset="0.719"/>
- </LinearGradientBrush>
- </Border.Background>
- <Canvas>
- <Button Content="确定" Width="70" Canvas.Top="260" Canvas.Left="380" Click="Button_Click_0"></Button>
- <Button Content="取消" Width="70" Canvas.Top="260" Canvas.Left="480" Click="Button_Click_1"></Button>
- <TextBox Name="activityName" Canvas.Left="120" Canvas.Top="20" Height="23" Width="220" />
- <TextBlock Canvas.Left="0" Canvas.Top="25" Height="21" Text="Name" Width="110" TextAlignment="Right" />
- <TextBox Name="activityTitle" Canvas.Left="120" Canvas.Top="63" Height="23" Width="220" />
- <TextBlock Canvas.Left="0" Canvas.Top="68" Height="21" Text="标题" Width="110" TextAlignment="Right" />
- <TextBox Name="activityX" Canvas.Left="120" Canvas.Top="110" Height="23" Width="220" Text="150"/>
- <TextBlock Canvas.Left="0" Canvas.Top="115" Height="21" Text="X-坐标" Width="110" TextAlignment="Right" />
- <TextBox Name="activityY" Canvas.Left="120" Canvas.Top="163" Height="23" Width="220" Text="250" />
- <TextBlock Canvas.Left="0" Canvas.Top="168" Height="21" Text="Y-坐标" Width="110" TextAlignment="Right" />
- <TextBox Name="activityDescription" Canvas.Left="120" Canvas.Top="210" Height="23" Width="220" AcceptsReturn="True" />
- <TextBlock Canvas.Left="0" Canvas.Top="215" Height="21" Text="说明" Width="110" TextAlignment="Right" />
- <TextBlock Name="ErrorInfo" Canvas.Top="270" Canvas.Left="50" Foreground="Red" />
- <Canvas Canvas.Left="350" Canvas.Top="15" Background="Blue">
- <TextBox Text="提交" Name="txtSubmtItem" Canvas.Left="11" Canvas.Top="6" Height="23" Width="160" />
- <ListBox Canvas.Left="11" Canvas.Top="30" Height="100" Name="lbSubmtOption" Width="160" />
- <Button Canvas.Left="174" Canvas.Top="6" Height="23" Name="buttonAddsubmtItem" Width="53" Click="buttonAddsubmtItem_Click" Content="添加"></Button>
- <Button Canvas.Left="179" Canvas.Top="110" Height="23" Name="buttonRemovesubmtItem" Width="53" Click="buttonRemovesubmtItem_Click" Content="删除"></Button>
- </Canvas>
- </Canvas>
- </Border>
- </Canvas>
- </UserControl>