| 123456789101112131415161718192021222324252627 |
- <StackPanel
- x:Class="SHJX.Service.Main.Views.Sidebar.ShowOperatePatient"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:const="clr-namespace:SHJX.Service.Common.Constants;assembly=SHJX.Service.Common"
- xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- Cursor="Hand"
- Orientation="Horizontal">
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Loaded">
- <i:InvokeCommandAction Command="{Binding ShowSearchLoadingCommand}" />
- </i:EventTrigger>
- </i:Interaction.Triggers>
- <Button Command="{Binding ApplicationCommands.ShowCommand}" CommandParameter="{x:Static const:FlyoutNames.SearchMedicineFlyout}">
- <StackPanel Orientation="Horizontal">
- <Image Height="20" Source="pack://application:,,,/SHJX.Service.Resource;component/Assets/Photos/按钮.png" />
- <TextBlock
- VerticalAlignment="Center"
- FontSize="15"
- FontWeight="Bold"
- Text="操作" />
- </StackPanel>
- </Button>
- </StackPanel>
|