终端一体化运控平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

52 rindas
2.2 KiB

  1. <Window x:Class="BPASmartClient.MorkCL.View.FryPanSelectView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:local="clr-namespace:BPASmartClient.MorkCL.View"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. xmlns:vm="clr-namespace:BPASmartClient.MorkCL.ViewModel"
  8. Title="EditFunctionView"
  9. Width="350"
  10. Height="200"
  11. AllowsTransparency="True"
  12. Background="{x:Null}"
  13. Topmost="True"
  14. WindowStartupLocation="CenterScreen"
  15. WindowStyle="None"
  16. mc:Ignorable="d">
  17. <Window.DataContext>
  18. <vm:FryPanSelectViewModel />
  19. </Window.DataContext>
  20. <Window.Resources>
  21. <ResourceDictionary>
  22. <ResourceDictionary.MergedDictionaries>
  23. <ResourceDictionary Source="/BPASmartClient.MorkCL;component/CustomStyle/CustomStyle.xaml" />
  24. </ResourceDictionary.MergedDictionaries>
  25. </ResourceDictionary>
  26. </Window.Resources>
  27. <Border
  28. Name="br"
  29. BorderBrush="#0CADF5"
  30. BorderThickness="0">
  31. <Border.Background>
  32. <ImageBrush ImageSource="/BPASmartClient.CustomResource;component/Image/弹框/biankuang_.png" />
  33. </Border.Background>
  34. <Grid>
  35. <Grid.RowDefinitions>
  36. <RowDefinition Height="70" />
  37. <RowDefinition Height="1*" />
  38. </Grid.RowDefinitions>
  39. <Border
  40. BorderBrush="#3099E5"
  41. BorderThickness="1">
  42. <TextBlock Text="请选择使用哪个炒锅" HorizontalAlignment="Center"/>
  43. </Border>
  44. <UniformGrid Grid.Row="1" Columns="3">
  45. <Button Content="1#炒锅" Width="100" Height="50" Command="{Binding SelectFryPanCommand}" CommandParameter="1"/>
  46. <Button Content="2#炒锅" Width="100" Height="50" Command="{Binding SelectFryPanCommand}" CommandParameter="2"/>
  47. <Button Content="取消下单" Width="100" Height="50" Command="{Binding CloseCommand}"/>
  48. </UniformGrid>
  49. </Grid>
  50. </Border>
  51. </Window>