|
12345678910111213141516171819202122 |
- <Window
- x:Class="BPASmartClient.SmallBatchingSystem.Views.PromptView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:BPASmartClient.SmallBatchingSystem.Views"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- Title="PromptView"
- Width="400"
- Height="200"
- AllowsTransparency="True"
- Background="{x:Null}"
- WindowStartupLocation="CenterScreen"
- WindowStyle="None"
- mc:Ignorable="d">
- <Grid>
- <Grid.Background>
- <ImageBrush ImageSource="/BPASmartClient.CustomResource;component/Image/弹窗.png" Stretch="Fill" />
- </Grid.Background>
-
- </Grid>
- </Window>
|