Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- <Window x:Class="BPASmartClient.MorkCL.View.FryPanSelectView"
- 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.MorkCL.View"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:vm="clr-namespace:BPASmartClient.MorkCL.ViewModel"
- Title="EditFunctionView"
- Width="350"
- Height="200"
- AllowsTransparency="True"
- Background="{x:Null}"
- Topmost="True"
- WindowStartupLocation="CenterScreen"
- WindowStyle="None"
- mc:Ignorable="d">
- <Window.DataContext>
- <vm:FryPanSelectViewModel />
- </Window.DataContext>
- <Window.Resources>
- <ResourceDictionary>
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="/BPASmartClient.MorkCL;component/CustomStyle/CustomStyle.xaml" />
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </Window.Resources>
- <Border
- Name="br"
- BorderBrush="#0CADF5"
- BorderThickness="0">
- <Border.Background>
- <ImageBrush ImageSource="/BPASmartClient.CustomResource;component/Image/弹框/biankuang_.png" />
- </Border.Background>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="70" />
- <RowDefinition Height="1*" />
- </Grid.RowDefinitions>
- <Border
- BorderBrush="#3099E5"
- BorderThickness="1">
- <TextBlock Text="请选择使用哪个炒锅" HorizontalAlignment="Center"/>
- </Border>
- <UniformGrid Grid.Row="1" Columns="3">
- <Button Content="1#炒锅" Width="100" Height="50" Command="{Binding SelectFryPanCommand}" CommandParameter="1"/>
- <Button Content="2#炒锅" Width="100" Height="50" Command="{Binding SelectFryPanCommand}" CommandParameter="2"/>
- <Button Content="取消下单" Width="100" Height="50" Command="{Binding CloseCommand}"/>
- </UniformGrid>
- </Grid>
- </Border>
- </Window>
|