<Window x:Class="XHandler.MainWindow"
|
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:local="clr-namespace:XHandler"
|
xmlns:str="clr-namespace:XHandler.Properties"
|
xmlns:ctrls="clr-namespace:XHandler.Controls"
|
xmlns:v="clr-namespace:XHandler.View"
|
mc:Ignorable="d"
|
WindowStyle="None" WindowState="Normal" SnapsToDevicePixels="True" ResizeMode="CanMinimize" AllowsTransparency="True"
|
Title="ImagingOS" Background="Transparent"
|
Loaded="Window_Loaded" Closing="Window_Closing"
|
xmlns:hc="https://handyorg.github.io/handycontrol" PreviewKeyDown="UserControl_PreviewKeyDown">
|
|
<Grid>
|
<!--<ScrollViewer VerticalScrollBarVisibility="Hidden" HorizontalAlignment="Right">
|
<StackPanel hc:Growl.GrowlParent="True" VerticalAlignment="Bottom" Margin="0,10,10,10"/>
|
</ScrollViewer>-->
|
|
<Grid x:Name="rootGrid" Visibility="Visible">
|
<Grid Background="#FFF7F8FA" x:Name="rootGridTitle">
|
<Grid.RowDefinitions>
|
<RowDefinition Height="110"/>
|
<RowDefinition Height="3"/>
|
<RowDefinition Height="*"/>
|
</Grid.RowDefinitions>
|
<ProgressBar x:Name="pBarProgress" Grid.Row="1" VerticalAlignment="Bottom" Height="3" Value="0" Maximum="100" Minimum="0" Template="{StaticResource CustomProgressBar}" />
|
<!--标题栏-->
|
<Grid Grid.Row="0" Name="gridTitle" Background="{DynamicResource blueBrush}">
|
<Grid.RowDefinitions>
|
<RowDefinition Height="40"/>
|
<RowDefinition Height="*"/>
|
</Grid.RowDefinitions>
|
<Image Grid.Row="0" Grid.RowSpan="2" Source="Assets/menu_bg.png" HorizontalAlignment="Right"/>
|
<Grid Grid.Row="0">
|
<Grid.ColumnDefinitions>
|
<ColumnDefinition Width="50"/>
|
<ColumnDefinition Width="*"/>
|
<ColumnDefinition Width="200"/>
|
<ColumnDefinition Width="50"/>
|
<ColumnDefinition Width="50"/>
|
<ColumnDefinition Width="50"/>
|
<ColumnDefinition Width="50"/>
|
</Grid.ColumnDefinitions>
|
<Image Grid.Column="0" Source="Assets/xhandler.png" Width="32" Height="32"/>
|
<TextBlock Grid.Column="1" x:Name="tbCaption" Text="ImagingOS" FontSize="20" VerticalAlignment="Center" HorizontalAlignment="Left" Foreground="White"/>
|
<TextBlock x:Name="textBlockLoginUser" Grid.Column="2" Text="" FontSize="18" VerticalAlignment="Center" HorizontalAlignment="Right" Foreground="White"/>
|
<Image Grid.Column="3" x:Name="imgDeviceStatus" Width="36" Height="36" Source="Assets/disconnect.png" PreviewMouseDown="imgDeviceStatus_PreviewMouseDown"/>
|
<ctrls:ImageButton Grid.Column="4" x:Name="btnRelogin" NormalImage="Assets/quit.png" Width="32" Height="32" ImageWidth="28" ImageHeight="28" VerticalAlignment="Center" HorizontalAlignment="Center"
|
Click="btnRelogin_Click"/>
|
<ctrls:ImageButton Grid.Column="5" x:Name="btnMinimize" NormalImage="Assets/minimize.png" Width="32" Height="32" ImageWidth="18" ImageHeight="18" VerticalAlignment="Center" HorizontalAlignment="Center"
|
Click="btnMinimize_Click"/>
|
<ctrls:ImageButton Grid.Column="6" x:Name="btnQuit" NormalImage="Assets/x.png" Width="32" Height="32" ImageWidth="18" ImageHeight="18" VerticalAlignment="Center" HorizontalAlignment="Center"
|
Click="btnQuit_Click"/>
|
</Grid>
|
<!--菜单栏-->
|
<Grid Grid.Row="1" Name="gridMenu">
|
<Grid.ColumnDefinitions>
|
<ColumnDefinition Width="80"/>
|
<ColumnDefinition Width="auto"/>
|
<ColumnDefinition Width="auto"/>
|
<ColumnDefinition Width="80"/>
|
<ColumnDefinition Width="80"/>
|
<ColumnDefinition Width="80"/>
|
<ColumnDefinition Width="*"/>
|
</Grid.ColumnDefinitions>
|
<ctrls:ImageRadioButton Grid.Column="0" x:Name="btnStartFirstPage" UnCheckImage="/Assets/LeftMenu/home.png" CheckImage="/Assets/LeftMenu/home_selected.png" ImageWidth="33" ImageHeight="32" Background="{DynamicResource blueBrush}"
|
Content="{x:Static str:Resources.btnHome}" MouseEnter="btnStartFirstPage_MouseEnter" MouseLeave="btnStartFirstPage_MouseLeave" Foreground="White" Padding="0,5,0,5" Width="70" Height="70" VerticalAlignment="Bottom"
|
Click="btnStartFirstPage_Click"/>
|
<TextBlock Background="White" x:Name="btnFirst" Grid.Column="0" Width="70" Height="5" VerticalAlignment="Bottom" Visibility="Hidden"></TextBlock>
|
<Grid Grid.Column="1" Name="gridOperMenu">
|
<Grid.ColumnDefinitions>
|
<ColumnDefinition Width="auto"></ColumnDefinition>
|
<!--<ColumnDefinition Width="80"></ColumnDefinition>
|
<ColumnDefinition Width="80"></ColumnDefinition>
|
<ColumnDefinition Width="80"></ColumnDefinition>-->
|
</Grid.ColumnDefinitions>
|
<StackPanel Orientation="Horizontal" Grid.Row="0" Grid.Column="1">
|
<ctrls:MenuButton x:Name="btnNew" NormalImage="/Assets/TopMenu/new.png" PressImage="/Assets/TopMenu/new_selected.png" DisabledImage="/Assets/TopMenu/new_disable.png" ImageWidth="33" ImageHeight="32" Background="{DynamicResource blueBrush}"
|
Content="{x:Static str:Resources.btnNew}" Foreground="White" Padding="0,5,0,5" Width="70" Height="70" VerticalAlignment="Bottom"
|
Click="btnNew_Click" Margin="5,0,5,0"/>
|
|
<ctrls:MenuButton x:Name="btnOpen" NormalImage="/Assets/TopMenu/open.png" PressImage="/Assets/TopMenu/open_selected.png" DisabledImage="/Assets/TopMenu/open_disable.png"
|
ImageWidth="33" ImageHeight="32" Background="{DynamicResource blueBrush}" Content="{x:Static str:Resources.btnOpen}" Foreground="White"
|
Padding="0,5,0,5" Width="70" Height="70" VerticalAlignment="Bottom" Click="btnOpen_Click" Margin="5,0,5,0"/>
|
|
<ctrls:MenuButton x:Name="btnSave" NormalImage="/Assets/TopMenu/save.png" PressImage="/Assets/TopMenu/save_selected.png" DisabledImage="/Assets/TopMenu/save_disable.png" ImageWidth="33" ImageHeight="32" Background="{DynamicResource blueBrush}"
|
Content="{x:Static str:Resources.btnSave}" Foreground="White" Padding="0,5,0,5" Width="70" Height="70" VerticalAlignment="Center"
|
Click="btnSave_Click" Margin="5,0,5,0"/>
|
<ctrls:MenuButton x:Name="btnSaveAs" NormalImage="/Assets/TopMenu/saveas.png" PressImage="/Assets/TopMenu/saveas_selected.png" DisabledImage="/Assets/TopMenu/saveas_disable.png" ImageWidth="33" ImageHeight="32" Background="{DynamicResource blueBrush}"
|
Content="{x:Static str:Resources.btnSaveAs}" Foreground="White" Padding="0,5,0,5" Width="70" Height="70" VerticalAlignment="Bottom"
|
Click="btnSaveAs_Click" Margin="5,0,5,0"/>
|
<Rectangle Width="1" Height="70" Fill="White" HorizontalAlignment="Right"/>
|
</StackPanel>
|
</Grid>
|
<Grid Grid.Column="2" x:Name="gridControl">
|
<Grid.ColumnDefinitions>
|
<ColumnDefinition Width="80"/>
|
<ColumnDefinition Width="80"/>
|
<!--<ColumnDefinition Width="80"/>
|
<ColumnDefinition Width="80"/>-->
|
<ColumnDefinition Width="80"/>
|
<ColumnDefinition Width="auto"/>
|
<ColumnDefinition Width="80"/>
|
</Grid.ColumnDefinitions>
|
|
<ctrls:MenuButton Grid.Column="0" x:Name="btnCheck" NormalImage="/Assets/TopMenu/check.png" PressImage="/Assets/TopMenu/check_selected.png"
|
DisabledImage="/Assets/TopMenu/check_disable.png" ImageWidth="33" ImageHeight="32" Background="{DynamicResource blueBrush}"
|
Content="{x:Static str:Resources.btnCheck}" Foreground="White" Padding="0,5,0,5" Width="70" Height="70" VerticalAlignment="Bottom"
|
Click="btnCheck_Click"/>
|
<ctrls:MenuButton Grid.Column="1" x:Name="btnSimulator" NormalImage="/Assets/TopMenu/simulator.png" PressImage="/Assets/TopMenu/simulator_selected.png"
|
DisabledImage="/Assets/TopMenu/simulator_disable.png" ImageWidth="33" ImageHeight="32" Background="{DynamicResource blueBrush}"
|
Content="{x:Static str:Resources.btnSimulator}" Foreground="White" Padding="0,5,0,5" Width="70" Height="70" VerticalAlignment="Bottom"
|
Click="btnSimulator_Click"/>
|
<ctrls:MenuButton Grid.Column="2" x:Name="btnRun" NormalImage="/Assets/TopMenu/run.png" PressImage="/Assets/TopMenu/run_selected.png"
|
DisabledImage="/Assets/TopMenu/run_disable.png" ImageWidth="33" ImageHeight="32" Background="{DynamicResource blueBrush}"
|
Content="{x:Static str:Resources.btnRun}" Foreground="White" Padding="0,5,0,5" Width="70" Height="70" VerticalAlignment="Bottom"
|
Click="btnRun_Click"/>
|
<!--<ctrls:MenuButton Grid.Column="3" x:Name="btnPause" NormalImage="/Assets/TopMenu/pause.png" PressImage="/Assets/TopMenu/pause_selected.png"
|
DisabledImage="/Assets/TopMenu/pause_disable.png" ImageWidth="33" ImageHeight="32" Background="{DynamicResource blueBrush}"
|
Content="{x:Static str:Resources.btnPause}" Foreground="White" Padding="0,5,0,5" Width="70" Height="70" VerticalAlignment="Bottom"
|
Click="btnPause_Click"/>
|
<ctrls:MenuButton Grid.Column="4" x:Name="btnStop" NormalImage="/Assets/TopMenu/stop.png" PressImage="/Assets/TopMenu/stop_selected.png"
|
DisabledImage="/Assets/TopMenu/stop_disable.png" ImageWidth="33" ImageHeight="32" Background="{DynamicResource blueBrush}"
|
Content="{x:Static str:Resources.btnStop}" Foreground="White" Padding="0,5,0,5" Width="70" Height="70" VerticalAlignment="Bottom"
|
Click="btnStop_Click"/>-->
|
<!--<ctrls:MenuButton Grid.Column="3" x:Name="btnGantt" NormalImage="/Assets/TopMenu/gantt.png" PressImage="/Assets/TopMenu/gantt_selected.png"
|
DisabledImage="/Assets/TopMenu/gantt_disable.png" ImageWidth="33" ImageHeight="32" Background="{DynamicResource blueBrush}"
|
Content="{x:Static str:Resources.btnGantt}" Foreground="White" Padding="0,5,0,5" Width="70" Height="70" VerticalAlignment="Bottom"/>-->
|
|
<ctrls:MenuButton Grid.Column="4" x:Name="btnControl" NormalImage="/Assets/TopMenu/reset.png" PressImage="/Assets/TopMenu/reset_selected.png"
|
DisabledImage="/Assets/TopMenu/reset_disable.png" ImageWidth="33" ImageHeight="32" Background="{DynamicResource blueBrush}"
|
Content="{x:Static str:Resources.btnControl}" Foreground="White" Padding="0,5,0,5" Width="70" Height="70"
|
VerticalAlignment="Bottom" Click="btnControl_Click"/>
|
|
<Rectangle Grid.Column="4" Width="1" Height="70" Fill="White" HorizontalAlignment="Right"/>
|
|
</Grid>
|
|
<ctrls:ImageRadioButton Grid.Column="3" x:Name="btnUserManager" UnCheckImage="/Assets/TopMenu/usermanager.png" CheckImage="/Assets/TopMenu/usermanager_selected.png" ImageWidth="33" ImageHeight="32" Background="{DynamicResource blueBrush}"
|
Content="{x:Static str:Resources.btnUserManager}" Foreground="White" Padding="0,5,0,5" Width="70" Height="70" VerticalAlignment="Bottom"
|
Click="btnUserManager_Click"/>
|
<TextBlock Background="White" x:Name="btnUser" Grid.Column="3" Width="70" Height="5" VerticalAlignment="Bottom" Visibility="Hidden"></TextBlock>
|
<ctrls:MenuButton Grid.Column="4" x:Name="btnSettings" NormalImage="/Assets/TopMenu/setting.png" PressImage="/Assets/TopMenu/setting_selected.png" ImageWidth="33" ImageHeight="32" Background="{DynamicResource blueBrush}"
|
Content="{x:Static str:Resources.btnSettings}" Foreground="White" Padding="0,5,0,5" Width="70" Height="70" VerticalAlignment="Bottom" Click="btnSettings_Click"/>
|
<ctrls:MenuButton Grid.Column="5" x:Name="btnAbout" NormalImage="/Assets/TopMenu/ximage.png" PressImage="/Assets/TopMenu/ximage_selected.png" ImageWidth="33" ImageHeight="32" Background="{DynamicResource blueBrush}"
|
Content="{x:Static str:Resources.btnAbout}" Foreground="White" Padding="0,5,0,5" Width="70" Height="70" VerticalAlignment="Bottom" Click="btnAbout_Click"/>
|
</Grid>
|
</Grid>
|
|
<Grid Grid.Row="2" Margin="15" x:Name="gridMainContent">
|
<Grid Margin="0" x:Name="gridMain">
|
<Grid.ColumnDefinitions>
|
<ColumnDefinition Width="80"/>
|
<ColumnDefinition Width="*"/>
|
<ColumnDefinition Width="auto"/>
|
</Grid.ColumnDefinitions>
|
|
<!--左侧菜单栏-->
|
<Border Grid.Column="0" Background="{DynamicResource blueBrush}" CornerRadius="5,0,0,5">
|
<Grid x:Name="gdLeftImageList">
|
<Grid.RowDefinitions>
|
<RowDefinition Height="72"/>
|
<RowDefinition Height="72"/>
|
<RowDefinition Height="auto"/>
|
<RowDefinition Height="72"/>
|
<RowDefinition Height="72"/>
|
<RowDefinition Height="72"/>
|
<RowDefinition Height="72"/>
|
<RowDefinition Height="72"/>
|
<RowDefinition Height="72"/>
|
<RowDefinition Height="72"/>
|
<RowDefinition Height="72"/>
|
<RowDefinition Height="*"/>
|
</Grid.RowDefinitions>
|
|
<!--实验设计-->
|
<ctrls:ImageRadioButton Grid.Row="0" x:Name="btnTestDesign" UnCheckImage="/Assets/LeftMenu/testdesign.png" CheckImage="/Assets/LeftMenu/testdesign_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.btnTestDesign}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}"
|
Checked="radioButton_Checked"/>
|
|
|
<!--<ctrls:ImageRadioButton Grid.Row="0" x:Name="btnHome" UnCheckImage="/Assets/LeftMenu/home.png" CheckImage="/Assets/LeftMenu/home_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.btnHome}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}"
|
Checked="radioButton_Checked" Visibility="Hidden"/>-->
|
<!--液体管理-->
|
<ctrls:ImageRadioButton Grid.Row="1" x:Name="btnLiquidManager" UnCheckImage="/Assets/LeftMenu/liquidmanager.png" CheckImage="/Assets/LeftMenu/liquidmanager_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.btnLiquidManager}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}"
|
Checked="radioButton_Checked"/>
|
|
<!--耗材管理-->
|
<ctrls:ImageRadioButton Grid.Row="2" x:Name="btnConsumableManager" UnCheckImage="/Assets/LeftMenu/consumablemanager.png" CheckImage="/Assets/LeftMenu/consumablemanager_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.btnConsumableManager}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}"
|
Checked="radioButton_Checked"/>
|
|
<!--菌落管理-->
|
<ctrls:ImageRadioButton Grid.Row="3" x:Name="btnBacteriaManager" UnCheckImage="/Assets/LeftMenu/bacteriamanager.png" CheckImage="/Assets/LeftMenu/bacteriamanager_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.btnBacteriaManager}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}" Margin="0 3"
|
Checked="radioButton_Checked"/>
|
|
<!--设备管理-->
|
<ctrls:ImageRadioButton Grid.Row="4" x:Name="btnDeviceManager" UnCheckImage="/Assets/LeftMenu/devicemanager.png" CheckImage="/Assets/LeftMenu/devicemanager_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.btnDeviceManager}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}"
|
Checked="radioButton_Checked"/>
|
|
|
<!--<ctrls:ImageRadioButton Grid.Row="3" x:Name="btnTestList" UnCheckImage="/Assets/LeftMenu/testlist.png" CheckImage="/Assets/LeftMenu/testlist_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.btnTestList}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}"
|
Checked="radioButton_Checked"/>-->
|
<!--<ctrls:ImageRadioButton Grid.Row="6" x:Name="btnLims" UnCheckImage="/Assets/LeftMenu/lims.png" CheckImage="/Assets/LeftMenu/lims_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.btnLims}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}"
|
Checked="radioButton_Checked" Visibility="Hidden"/>
|
<ctrls:ImageRadioButton Grid.Row="7" x:Name="btnDataManager" UnCheckImage="/Assets/LeftMenu/datamanager.png" CheckImage="/Assets/LeftMenu/datamanager_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.btnDataManager}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}"
|
Checked="radioButton_Checked" Visibility="Hidden"/>-->
|
<!--<ctrls:ImageRadioButton Grid.Row="4" x:Name="btnAuditTrail" UnCheckImage="/Assets/LeftMenu/audittrail.png" CheckImage="/Assets/LeftMenu/audittrail_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.btnAuditTrail}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}"
|
Checked="radioButton_Checked"/>-->
|
|
<!--菌落挑选-->
|
<ctrls:ImageRadioButton Grid.Row="5" x:Name="btnBacteriaPick" UnCheckImage="/Assets/LeftMenu/audittrail.png" CheckImage="/Assets/LeftMenu/audittrail_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.strBacteriaPick}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}"
|
Checked="radioButton_Checked"/>
|
<!--样本数据 strSampleData-->
|
<ctrls:ImageRadioButton Grid.Row="6" x:Name="btnDataManager" UnCheckImage="/Assets/LeftMenu/datamanager.png" CheckImage="/Assets/LeftMenu/datamanager_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.btnDataManager}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}"
|
Checked="radioButton_Checked"/>
|
<ctrls:ImageRadioButton Grid.Row="7" x:Name="btnAuditTrail" UnCheckImage="/Assets/LeftMenu/audittrail.png" CheckImage="/Assets/LeftMenu/audittrail_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.btnAuditTrail}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}"
|
Checked="radioButton_Checked"/>
|
<ctrls:ImageRadioButton Grid.Row="8" x:Name="btnTestList" UnCheckImage="/Assets/LeftMenu/testlist.png" CheckImage="/Assets/LeftMenu/testlist_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.btnTestList}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}"
|
Checked="radioButton_Checked"/>
|
<!--移液报告-->
|
<ctrls:ImageRadioButton Grid.Row="9" x:Name="btnMoveLiquid" UnCheckImage="/Assets/LeftMenu/datareport.png" CheckImage="/Assets/LeftMenu/datareport_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.strMoveLiquid}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}"
|
Checked="radioButton_Checked"/>
|
<ctrls:ImageRadioButton Grid.Row="10" x:Name="btnTabletop" UnCheckImage="/Assets/LeftMenu/tabletop.png" CheckImage="/Assets/LeftMenu/tabletop_selected.png" ImageWidth="26" ImageHeight="26"
|
Content="{x:Static str:Resources.strTabletopTemp}" Width="70" Height="65" Foreground="White" Background="{DynamicResource blueBrush}"
|
Checked="radioButton_Checked"/>
|
</Grid>
|
</Border>
|
|
<Grid Grid.Column="1" Name="gridContent">
|
<!--<v:ConsumableManagement/>-->
|
<!--<v:TestDesign/>-->
|
<!--<v:LiquidManagement/>-->
|
</Grid>
|
|
<!--<ScrollViewer Grid.Column="2" VerticalScrollBarVisibility="Hidden" HorizontalAlignment="Right">
|
<StackPanel hc:Growl.Token="ShowTip" hc:Growl.GrowlParent="True" VerticalAlignment="Top" />
|
</ScrollViewer>-->
|
</Grid>
|
|
<ScrollViewer VerticalScrollBarVisibility="Hidden" HorizontalAlignment="Right">
|
<StackPanel hc:Growl.Token="ShowTip" hc:Growl.GrowlParent="True" VerticalAlignment="Bottom" />
|
</ScrollViewer>
|
</Grid>
|
</Grid>
|
</Grid>
|
<Grid x:Name="loginGrid"/>
|
<Grid x:Name="remoteGrid" Visibility="Hidden">
|
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Text="{x:Static str:Resources.strRemoteTips}" FontSize="30" FontWeight="Bold" Foreground="red"></TextBlock>
|
</Grid>
|
</Grid>
|
</Window>
|