Merge branch 'master' of https://git.kaiyili-lab.com/huangsucan/ACP
This commit is contained in:
@@ -227,7 +227,7 @@ Command="{Binding GetFileStringCommand}">
|
|||||||
</MenuItem.Icon>
|
</MenuItem.Icon>
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
<MenuItem Header="切换九宫格"
|
<MenuItem Header="切换初始主界面"
|
||||||
FontSize="13"
|
FontSize="13"
|
||||||
Height="50"
|
Height="50"
|
||||||
Foreground="White"
|
Foreground="White"
|
||||||
|
|||||||
@@ -1,18 +1,30 @@
|
|||||||
using DeviceCommand.Base;
|
using DeviceCommand.Base;
|
||||||
using DeviceCommand.Devices;
|
using DeviceCommand.Devices;
|
||||||
using MainModule.Views;
|
using MainModule.Views;
|
||||||
using System.Reflection;
|
using Prism.Ioc;
|
||||||
using UIShare.GlobalVariable;
|
using Prism.Modularity;
|
||||||
|
|
||||||
namespace MainModule
|
namespace MainModule
|
||||||
{
|
{
|
||||||
[Module(OnDemand=true)]
|
[Module(OnDemand = true)]
|
||||||
public class MainModule : IModule
|
public class MainModule : IModule
|
||||||
{
|
{
|
||||||
public void OnInitialized(IContainerProvider containerProvider)
|
public void OnInitialized(IContainerProvider containerProvider)
|
||||||
{
|
{
|
||||||
IRegionManager regionManager = containerProvider.Resolve<IRegionManager>();
|
IRegionManager regionManager = containerProvider.Resolve<IRegionManager>();
|
||||||
|
|
||||||
|
// 1. 加载主界面
|
||||||
regionManager.RegisterViewWithRegion("ShellViewManager", typeof(MainView));
|
regionManager.RegisterViewWithRegion("ShellViewManager", typeof(MainView));
|
||||||
|
|
||||||
|
// 2. 给 3 个台架分别注入测试视图
|
||||||
|
// 当你点击 "台架 1" 的 Tab 时,就会显示这个 AutomatedTestingView
|
||||||
|
regionManager.RegisterViewWithRegion("TestCell1", typeof(AutomatedTestingView));
|
||||||
|
|
||||||
|
// 当你点击 "台架 2" 的 Tab 时,就会显示这个 AutomatedTestingView
|
||||||
|
regionManager.RegisterViewWithRegion("TestCell2", typeof(AutomatedTestingView));
|
||||||
|
|
||||||
|
// 当你点击 "台架 3" 的 Tab 时,就会显示这个 AutomatedTestingView
|
||||||
|
regionManager.RegisterViewWithRegion("TestCell3", typeof(AutomatedTestingView));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void RegisterTypes(IContainerRegistry containerRegistry)
|
public void RegisterTypes(IContainerRegistry containerRegistry)
|
||||||
@@ -22,4 +34,4 @@ namespace MainModule
|
|||||||
containerRegistry.RegisterForNavigation<ProtocolStartView>("ProtocolStartView");
|
containerRegistry.RegisterForNavigation<ProtocolStartView>("ProtocolStartView");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -8,6 +8,7 @@
|
|||||||
xmlns:converters="clr-namespace:UIShare.Converters;assembly=UIShare"
|
xmlns:converters="clr-namespace:UIShare.Converters;assembly=UIShare"
|
||||||
prism:ViewModelLocator.AutoWireViewModel="True"
|
prism:ViewModelLocator.AutoWireViewModel="True"
|
||||||
mc:Ignorable="d" d:DesignHeight="1080" d:DesignWidth="1920">
|
mc:Ignorable="d" d:DesignHeight="1080" d:DesignWidth="1920">
|
||||||
|
|
||||||
<i:Interaction.Triggers>
|
<i:Interaction.Triggers>
|
||||||
<i:EventTrigger EventName="Loaded">
|
<i:EventTrigger EventName="Loaded">
|
||||||
<i:InvokeCommandAction Command="{Binding LoadedCommand}"/>
|
<i:InvokeCommandAction Command="{Binding LoadedCommand}"/>
|
||||||
@@ -18,241 +19,100 @@
|
|||||||
<converters:StringToVisibilityConverter x:Key="StringToVisibilityConverter"/>
|
<converters:StringToVisibilityConverter x:Key="StringToVisibilityConverter"/>
|
||||||
</UserControl.Resources>
|
</UserControl.Resources>
|
||||||
|
|
||||||
<Grid>
|
<Grid Background="#F0F2F5">
|
||||||
<Grid.RowDefinitions>
|
<!-- 加一个浅灰底色更能衬托出白色的选项卡,可根据你的UI调整 -->
|
||||||
<RowDefinition Height="*"/>
|
|
||||||
<RowDefinition Height="*"/>
|
<!-- 顶部的选项卡,切换 3 个台架 -->
|
||||||
<RowDefinition Height="*"/>
|
<TabControl Margin="5">
|
||||||
</Grid.RowDefinitions>
|
|
||||||
<Grid.ColumnDefinitions>
|
<TabControl.Resources>
|
||||||
<ColumnDefinition Width="*"/>
|
<!-- 1. 去除 TabControl 原生的丑陋边框和灰色背景 -->
|
||||||
<ColumnDefinition Width="*"/>
|
<Style TargetType="TabControl">
|
||||||
<ColumnDefinition Width="*"/>
|
<Setter Property="Background" Value="Transparent"/>
|
||||||
</Grid.ColumnDefinitions>
|
<Setter Property="BorderThickness" Value="0"/>
|
||||||
|
<Setter Property="Padding" Value="0,5,0,0"/>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<!-- 2. 美化 TabItem 标签头 -->
|
||||||
|
<Style TargetType="TabItem">
|
||||||
|
<Setter Property="FontSize" Value="16"/>
|
||||||
|
<Setter Property="FontWeight" Value="SemiBold"/>
|
||||||
|
<Setter Property="Foreground" Value="#8C8C8C"/>
|
||||||
|
<!-- 默认灰字 -->
|
||||||
|
<Setter Property="Background" Value="Transparent"/>
|
||||||
|
<Setter Property="Padding" Value="25,12"/>
|
||||||
|
<!-- 撑大点击区域 -->
|
||||||
|
<Setter Property="Margin" Value="0,0,4,0"/>
|
||||||
|
<!-- 标签之间的间距 -->
|
||||||
|
<Setter Property="Cursor" Value="Hand"/>
|
||||||
|
|
||||||
|
<!-- 核心魔法:重写外观结构 -->
|
||||||
|
<Setter Property="Template">
|
||||||
|
<Setter.Value>
|
||||||
|
<ControlTemplate TargetType="TabItem">
|
||||||
|
<!-- 用一个带底部边框的 Border 包装文字 -->
|
||||||
|
<Border Name="Border"
|
||||||
|
Background="{TemplateBinding Background}"
|
||||||
|
BorderBrush="Transparent"
|
||||||
|
BorderThickness="0,0,0,3"
|
||||||
|
CornerRadius="4,4,0,0">
|
||||||
|
<ContentPresenter x:Name="ContentSite"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
HorizontalAlignment="Center"
|
||||||
|
ContentSource="Header"
|
||||||
|
Margin="{TemplateBinding Padding}"/>
|
||||||
|
</Border>
|
||||||
|
<ControlTemplate.Triggers>
|
||||||
|
<!-- 交互状态1:鼠标悬浮 -->
|
||||||
|
<Trigger Property="IsMouseOver" Value="True">
|
||||||
|
<Setter TargetName="Border" Property="Background" Value="#E6E6E6"/>
|
||||||
|
<Setter Property="Foreground" Value="#595959"/>
|
||||||
|
</Trigger>
|
||||||
|
|
||||||
|
<!-- 交互状态2:被选中 -->
|
||||||
|
<Trigger Property="IsSelected" Value="True">
|
||||||
|
<Setter TargetName="Border" Property="Background" Value="White"/>
|
||||||
|
<!-- 选中时的底部指示条颜色(蓝色) -->
|
||||||
|
<Setter TargetName="Border" Property="BorderBrush" Value="#007ACC"/>
|
||||||
|
<!-- 选中时的字体颜色(蓝色) -->
|
||||||
|
<Setter Property="Foreground" Value="#007ACC"/>
|
||||||
|
</Trigger>
|
||||||
|
</ControlTemplate.Triggers>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
|
|
||||||
<!-- 单元 1:TestCell1,默认 (0,0) -->
|
|
||||||
<ContentControl prism:RegionManager.RegionName="TestCell1" Margin="2">
|
|
||||||
<ContentControl.Style>
|
|
||||||
<Style TargetType="ContentControl">
|
|
||||||
<Setter Property="Grid.Row" Value="0"/>
|
|
||||||
<Setter Property="Grid.Column" Value="0"/>
|
|
||||||
<Setter Property="Grid.RowSpan" Value="1"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="1"/>
|
|
||||||
<Style.Triggers>
|
<Style.Triggers>
|
||||||
|
<!-- !!!这是你原有的全屏隐藏逻辑!完美保留!!! -->
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName, Converter={StaticResource StringToVisibilityConverter}}" Value="Visible">
|
<DataTrigger Binding="{Binding ExpandedCellName, Converter={StaticResource StringToVisibilityConverter}}" Value="Visible">
|
||||||
<Setter Property="Visibility" Value="Collapsed"/>
|
<Setter Property="Visibility" Value="Collapsed"/>
|
||||||
</DataTrigger>
|
</DataTrigger>
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName}" Value="TestCell1">
|
|
||||||
<Setter Property="Visibility" Value="Visible"/>
|
|
||||||
<Setter Property="Grid.Row" Value="0"/>
|
|
||||||
<Setter Property="Grid.Column" Value="0"/>
|
|
||||||
<Setter Property="Grid.RowSpan" Value="3"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="3"/>
|
|
||||||
<Setter Property="Panel.ZIndex" Value="99"/>
|
|
||||||
</DataTrigger>
|
|
||||||
</Style.Triggers>
|
</Style.Triggers>
|
||||||
</Style>
|
</Style>
|
||||||
</ContentControl.Style>
|
</TabControl.Resources>
|
||||||
</ContentControl>
|
|
||||||
|
|
||||||
<!-- 单元 2:TestCell2,默认 (0,1) -->
|
<!-- 标签页 1 -->
|
||||||
<ContentControl prism:RegionManager.RegionName="TestCell2" Margin="2">
|
<TabItem Header="台架 1 (Bench 1)">
|
||||||
<ContentControl.Style>
|
<!-- 加一个白底包裹,显得更像现代卡片 -->
|
||||||
<Style TargetType="ContentControl">
|
<Border Background="White" CornerRadius="0,4,4,4" Margin="0" BorderThickness="0" Padding="5">
|
||||||
<Setter Property="Grid.Row" Value="0"/>
|
<ContentControl prism:RegionManager.RegionName="TestCell1" />
|
||||||
<Setter Property="Grid.Column" Value="1"/>
|
</Border>
|
||||||
<Setter Property="Grid.RowSpan" Value="1"/>
|
</TabItem>
|
||||||
<Setter Property="Grid.ColumnSpan" Value="1"/>
|
|
||||||
<Style.Triggers>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName, Converter={StaticResource StringToVisibilityConverter}}" Value="Visible">
|
|
||||||
<Setter Property="Visibility" Value="Collapsed"/>
|
|
||||||
</DataTrigger>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName}" Value="TestCell2">
|
|
||||||
<Setter Property="Visibility" Value="Visible"/>
|
|
||||||
<Setter Property="Grid.Row" Value="0"/>
|
|
||||||
<Setter Property="Grid.Column" Value="0"/>
|
|
||||||
<Setter Property="Grid.RowSpan" Value="3"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="3"/>
|
|
||||||
<Setter Property="Panel.ZIndex" Value="99"/>
|
|
||||||
</DataTrigger>
|
|
||||||
</Style.Triggers>
|
|
||||||
</Style>
|
|
||||||
</ContentControl.Style>
|
|
||||||
</ContentControl>
|
|
||||||
|
|
||||||
<!-- 单元 3:TestCell3,默认 (0,2) -->
|
<!-- 标签页 2 -->
|
||||||
<ContentControl prism:RegionManager.RegionName="TestCell3" Margin="2">
|
<TabItem Header="台架 2 (Bench 2)">
|
||||||
<ContentControl.Style>
|
<Border Background="White" CornerRadius="0,4,4,4" Margin="0" BorderThickness="0" Padding="5">
|
||||||
<Style TargetType="ContentControl">
|
<ContentControl prism:RegionManager.RegionName="TestCell2" />
|
||||||
<Setter Property="Grid.Row" Value="0"/>
|
</Border>
|
||||||
<Setter Property="Grid.Column" Value="2"/>
|
</TabItem>
|
||||||
<Setter Property="Grid.RowSpan" Value="1"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="1"/>
|
|
||||||
<Style.Triggers>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName, Converter={StaticResource StringToVisibilityConverter}}" Value="Visible">
|
|
||||||
<Setter Property="Visibility" Value="Collapsed"/>
|
|
||||||
</DataTrigger>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName}" Value="TestCell3">
|
|
||||||
<Setter Property="Visibility" Value="Visible"/>
|
|
||||||
<Setter Property="Grid.Row" Value="0"/>
|
|
||||||
<Setter Property="Grid.Column" Value="0"/>
|
|
||||||
<Setter Property="Grid.RowSpan" Value="3"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="3"/>
|
|
||||||
<Setter Property="Panel.ZIndex" Value="99"/>
|
|
||||||
</DataTrigger>
|
|
||||||
</Style.Triggers>
|
|
||||||
</Style>
|
|
||||||
</ContentControl.Style>
|
|
||||||
</ContentControl>
|
|
||||||
|
|
||||||
<!-- 单元 4:TestCell4,默认 (1,0) -->
|
<!-- 标签页 3 -->
|
||||||
<ContentControl prism:RegionManager.RegionName="TestCell4" Margin="2">
|
<TabItem Header="台架 3 (Bench 3)">
|
||||||
<ContentControl.Style>
|
<Border Background="White" CornerRadius="0,4,4,4" Margin="0" BorderThickness="0" Padding="5">
|
||||||
<Style TargetType="ContentControl">
|
<ContentControl prism:RegionManager.RegionName="TestCell3" />
|
||||||
<Setter Property="Grid.Row" Value="1"/>
|
</Border>
|
||||||
<Setter Property="Grid.Column" Value="0"/>
|
</TabItem>
|
||||||
<Setter Property="Grid.RowSpan" Value="1"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="1"/>
|
|
||||||
<Style.Triggers>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName, Converter={StaticResource StringToVisibilityConverter}}" Value="Visible">
|
|
||||||
<Setter Property="Visibility" Value="Collapsed"/>
|
|
||||||
</DataTrigger>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName}" Value="TestCell4">
|
|
||||||
<Setter Property="Visibility" Value="Visible"/>
|
|
||||||
<Setter Property="Grid.Row" Value="0"/>
|
|
||||||
<Setter Property="Grid.Column" Value="0"/>
|
|
||||||
<Setter Property="Grid.RowSpan" Value="3"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="3"/>
|
|
||||||
<Setter Property="Panel.ZIndex" Value="99"/>
|
|
||||||
</DataTrigger>
|
|
||||||
</Style.Triggers>
|
|
||||||
</Style>
|
|
||||||
</ContentControl.Style>
|
|
||||||
</ContentControl>
|
|
||||||
|
|
||||||
<!-- 单元 5:TestCell5,默认 (1,1) -->
|
</TabControl>
|
||||||
<ContentControl prism:RegionManager.RegionName="TestCell5" Margin="2">
|
|
||||||
<ContentControl.Style>
|
|
||||||
<Style TargetType="ContentControl">
|
|
||||||
<Setter Property="Grid.Row" Value="1"/>
|
|
||||||
<Setter Property="Grid.Column" Value="1"/>
|
|
||||||
<Setter Property="Grid.RowSpan" Value="1"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="1"/>
|
|
||||||
<Style.Triggers>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName, Converter={StaticResource StringToVisibilityConverter}}" Value="Visible">
|
|
||||||
<Setter Property="Visibility" Value="Collapsed"/>
|
|
||||||
</DataTrigger>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName}" Value="TestCell5">
|
|
||||||
<Setter Property="Visibility" Value="Visible"/>
|
|
||||||
<Setter Property="Grid.Row" Value="0"/>
|
|
||||||
<Setter Property="Grid.Column" Value="0"/>
|
|
||||||
<Setter Property="Grid.RowSpan" Value="3"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="3"/>
|
|
||||||
<Setter Property="Panel.ZIndex" Value="99"/>
|
|
||||||
</DataTrigger>
|
|
||||||
</Style.Triggers>
|
|
||||||
</Style>
|
|
||||||
</ContentControl.Style>
|
|
||||||
</ContentControl>
|
|
||||||
|
|
||||||
<!-- 单元 6:TestCell6,默认 (1,2) -->
|
|
||||||
<ContentControl prism:RegionManager.RegionName="TestCell6" Margin="2">
|
|
||||||
<ContentControl.Style>
|
|
||||||
<Style TargetType="ContentControl">
|
|
||||||
<Setter Property="Grid.Row" Value="1"/>
|
|
||||||
<Setter Property="Grid.Column" Value="2"/>
|
|
||||||
<Setter Property="Grid.RowSpan" Value="1"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="1"/>
|
|
||||||
<Style.Triggers>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName, Converter={StaticResource StringToVisibilityConverter}}" Value="Visible">
|
|
||||||
<Setter Property="Visibility" Value="Collapsed"/>
|
|
||||||
</DataTrigger>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName}" Value="TestCell6">
|
|
||||||
<Setter Property="Visibility" Value="Visible"/>
|
|
||||||
<Setter Property="Grid.Row" Value="0"/>
|
|
||||||
<Setter Property="Grid.Column" Value="0"/>
|
|
||||||
<Setter Property="Grid.RowSpan" Value="3"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="3"/>
|
|
||||||
<Setter Property="Panel.ZIndex" Value="99"/>
|
|
||||||
</DataTrigger>
|
|
||||||
</Style.Triggers>
|
|
||||||
</Style>
|
|
||||||
</ContentControl.Style>
|
|
||||||
</ContentControl>
|
|
||||||
|
|
||||||
<!-- 单元 7:TestCell7,默认 (2,0) -->
|
|
||||||
<ContentControl prism:RegionManager.RegionName="TestCell7" Margin="2">
|
|
||||||
<ContentControl.Style>
|
|
||||||
<Style TargetType="ContentControl">
|
|
||||||
<Setter Property="Grid.Row" Value="2"/>
|
|
||||||
<Setter Property="Grid.Column" Value="0"/>
|
|
||||||
<Setter Property="Grid.RowSpan" Value="1"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="1"/>
|
|
||||||
<Style.Triggers>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName, Converter={StaticResource StringToVisibilityConverter}}" Value="Visible">
|
|
||||||
<Setter Property="Visibility" Value="Collapsed"/>
|
|
||||||
</DataTrigger>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName}" Value="TestCell7">
|
|
||||||
<Setter Property="Visibility" Value="Visible"/>
|
|
||||||
<Setter Property="Grid.Row" Value="0"/>
|
|
||||||
<Setter Property="Grid.Column" Value="0"/>
|
|
||||||
<Setter Property="Grid.RowSpan" Value="3"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="3"/>
|
|
||||||
<Setter Property="Panel.ZIndex" Value="99"/>
|
|
||||||
</DataTrigger>
|
|
||||||
</Style.Triggers>
|
|
||||||
</Style>
|
|
||||||
</ContentControl.Style>
|
|
||||||
</ContentControl>
|
|
||||||
|
|
||||||
<!-- 单元 8:TestCell8,默认 (2,1) -->
|
|
||||||
<ContentControl prism:RegionManager.RegionName="TestCell8" Margin="2">
|
|
||||||
<ContentControl.Style>
|
|
||||||
<Style TargetType="ContentControl">
|
|
||||||
<Setter Property="Grid.Row" Value="2"/>
|
|
||||||
<Setter Property="Grid.Column" Value="1"/>
|
|
||||||
<Setter Property="Grid.RowSpan" Value="1"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="1"/>
|
|
||||||
<Style.Triggers>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName, Converter={StaticResource StringToVisibilityConverter}}" Value="Visible">
|
|
||||||
<Setter Property="Visibility" Value="Collapsed"/>
|
|
||||||
</DataTrigger>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName}" Value="TestCell8">
|
|
||||||
<Setter Property="Visibility" Value="Visible"/>
|
|
||||||
<Setter Property="Grid.Row" Value="0"/>
|
|
||||||
<Setter Property="Grid.Column" Value="0"/>
|
|
||||||
<Setter Property="Grid.RowSpan" Value="3"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="3"/>
|
|
||||||
<Setter Property="Panel.ZIndex" Value="99"/>
|
|
||||||
</DataTrigger>
|
|
||||||
</Style.Triggers>
|
|
||||||
</Style>
|
|
||||||
</ContentControl.Style>
|
|
||||||
</ContentControl>
|
|
||||||
|
|
||||||
<!-- 单元 9:TestCell9,默认 (2,2) -->
|
|
||||||
<!--<ContentControl prism:RegionManager.RegionName="TestCell9" Margin="2">
|
|
||||||
<ContentControl.Style>
|
|
||||||
<Style TargetType="ContentControl">
|
|
||||||
<Setter Property="Grid.Row" Value="2"/>
|
|
||||||
<Setter Property="Grid.Column" Value="2"/>
|
|
||||||
<Setter Property="Grid.RowSpan" Value="1"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="1"/>
|
|
||||||
<Style.Triggers>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName, Converter={StaticResource StringToVisibilityConverter}}" Value="Visible">
|
|
||||||
<Setter Property="Visibility" Value="Collapsed"/>
|
|
||||||
</DataTrigger>
|
|
||||||
<DataTrigger Binding="{Binding ExpandedCellName}" Value="TestCell9">
|
|
||||||
<Setter Property="Visibility" Value="Visible"/>
|
|
||||||
<Setter Property="Grid.Row" Value="0"/>
|
|
||||||
<Setter Property="Grid.Column" Value="0"/>
|
|
||||||
<Setter Property="Grid.RowSpan" Value="3"/>
|
|
||||||
<Setter Property="Grid.ColumnSpan" Value="3"/>
|
|
||||||
<Setter Property="Panel.ZIndex" Value="99"/>
|
|
||||||
</DataTrigger>
|
|
||||||
</Style.Triggers>
|
|
||||||
</Style>
|
|
||||||
</ContentControl.Style>
|
|
||||||
</ContentControl>-->
|
|
||||||
</Grid>
|
</Grid>
|
||||||
</UserControl>
|
</UserControl>
|
||||||
Reference in New Issue
Block a user