12345678910111213141516171819202122232425262728293031323334353637 |
- <UserControl x:Class="BlankApp1.Views.PopView"
- 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:BlankApp1.Views"
- xmlns:prism="http://prismlibrary.com/"
- Height="400" Width="400">
- <prism:Dialog.WindowStyle>
- <Style TargetType="Window">
- <Setter Property="SizeToContent" Value="WidthAndHeight" />
- <Setter Property="ResizeMode" Value="NoResize" />
- <Setter Property="prism:Dialog.WindowStartupLocation" Value="CenterScreen" />
- <Setter Property="WindowStyle" Value="None" />
- </Style>
- </prism:Dialog.WindowStyle>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="50"/>
- <RowDefinition />
- </Grid.RowDefinitions>
- <Grid Grid.Row="0" Cursor="Hand" >
- <StackPanel Orientation="Horizontal" Margin="10,5,0,0">
- <TextBlock Text="编辑" FontSize="15" />
- </StackPanel>
- <StackPanel HorizontalAlignment="Right" Margin="10,5,5,0">
- <Button Command="{Binding CloseCommand}" Background="Transparent" Content="✕" BorderThickness="0" Cursor="Hand" />
- </StackPanel>
- </Grid>
- <StackPanel Orientation="Horizontal" Grid.Row="1" Margin="10">
- <TextBlock Text="名称" Height="30" FontSize="20" Margin="0,0,20,0" />
- <TextBox Width="150" Height="30" Text="{Binding DisContent}" />
- <Button Content="确认" Width="100" Command="{Binding SureCommand}" Style="{DynamicResource NormalButtonStyle}"/>
- </StackPanel>
- </Grid>
- </UserControl>
|