1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <UserControl x:Class="NEIntelligentControl2.Views.BoostStation.DataLabel"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:NEIntelligentControl2.Views.BoostStation"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800" Background="#01000000" MouseLeftButtonDown="UserControl_MouseLeftButtonDown" Loaded="UserControl_Loaded">
- <UserControl.Resources>
- <Style x:Key="TextBlockMain" TargetType="TextBlock">
- <Setter Property="MinWidth" Value="50"/>
- <Setter Property="Foreground" Value="WhiteSmoke"/>
- <Setter Property="FontSize" Value="{Binding RelativeSource={RelativeSource AncestorType={x:Type UserControl}, Mode=FindAncestor}, Path=Proportion}"/>
- <Style.Triggers>
- <DataTrigger Binding="{Binding RelativeSource={RelativeSource AncestorType={x:Type UserControl}, Mode=FindAncestor}, Path=IsEditModel}" Value="False">
- <Setter Property="Background" Value="Transparent"/>
- </DataTrigger>
- <DataTrigger Binding="{Binding RelativeSource={RelativeSource AncestorType={x:Type UserControl}, Mode=FindAncestor}, Path=IsEditModel}" Value="True">
- <Setter Property="Background" Value="#66FFFFFF"/>
- </DataTrigger>
- </Style.Triggers>
- </Style>
- <Style x:Key="GridMain" TargetType="Grid">
- <Setter Property="VerticalAlignment" Value="Center"/>
- <Setter Property="HorizontalAlignment" Value="Center"/>
- <Setter Property="MinWidth" Value="50"/>
- <Style.Triggers>
- <DataTrigger Binding="{Binding RelativeSource={RelativeSource AncestorType={x:Type UserControl}, Mode=FindAncestor}, Path=IsSelected}" Value="True">
- <Setter Property="Effect">
- <Setter.Value>
- <DropShadowEffect ShadowDepth="0" BlurRadius="9" Color="WhiteSmoke"/>
- </Setter.Value>
- </Setter>
- </DataTrigger>
- </Style.Triggers>
- </Style>
- </UserControl.Resources>
- <Grid x:Name="_GMain" Style="{DynamicResource GridMain}">
- <TextBlock x:Name="_TBMain" Text="{Binding RelativeSource={RelativeSource AncestorType={x:Type UserControl}, Mode=FindAncestor}, Path=Info}" Style="{DynamicResource TextBlockMain}"/>
- </Grid>
- </UserControl>
|