123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <Window x:Class="NEIntelligentControl2.Windows.WindturbineInfoWindow"
- 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:NEIntelligentControl2.Windows"
- xmlns:vw="clr-namespace:NEIntelligentControl2.Views.Infos"
- xmlns:am="clr-namespace:NEIntelligentControl2.Views.Alarm"
- mc:Ignorable="d"
- Title="风机详情" Height="722" Width="1306" Background="#FF454545" AllowsTransparency="True" WindowStyle="None" WindowStartupLocation="CenterOwner" Loaded="Window_Loaded">
- <WindowChrome.WindowChrome>
- <WindowChrome/>
- </WindowChrome.WindowChrome>
- <Window.Resources>
- <Style TargetType="{x:Type ScrollBar}">
- <Setter Property="Background" Value="#77F0F8FF"/>
- <Setter Property="Stylus.IsPressAndHoldEnabled" Value="false"/>
- <Setter Property="Stylus.IsFlicksEnabled" Value="false"/>
- <!--滚动条宽度-->
- <Setter Property="Width" Value="8"/>
- <Setter Property="MinWidth" Value="6"/>
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type ScrollBar}">
- <!--滚动条背景色-->
- <Grid x:Name="Bg" Background="#77DDDDDD" SnapsToDevicePixels="true" Width="8">
- <Grid.RowDefinitions>
- <RowDefinition />
- </Grid.RowDefinitions>
- <Track x:Name="PART_Track" IsDirectionReversed="true" IsEnabled="{TemplateBinding IsMouseOver}">
- <Track.DecreaseRepeatButton>
- <RepeatButton Command="{x:Static ScrollBar.PageUpCommand}" Style="{StaticResource VerticalScrollBarPageButton}"/>
- </Track.DecreaseRepeatButton>
- <Track.IncreaseRepeatButton>
- <RepeatButton Command="{x:Static ScrollBar.PageDownCommand}" Style="{StaticResource VerticalScrollBarPageButton}"/>
- </Track.IncreaseRepeatButton>
- <Track.Thumb>
- <Thumb Style="{StaticResource ScrollBarThumb}"/>
- </Track.Thumb>
- </Track>
- </Grid>
- <ControlTemplate.Triggers>
- <Trigger Property="IsEnabled" Value="false">
- <Setter Property="Background" TargetName="Bg" Value="{StaticResource ScrollBarDisabledBackground}"/>
- </Trigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- <Style.Triggers>
- <Trigger Property="Orientation" Value="Horizontal">
- <Setter Property="Width" Value="Auto"/>
- <Setter Property="MinWidth" Value="0"/>
- <Setter Property="Height" Value="6"/>
- <Setter Property="MinHeight" Value="6"/>
- <Setter Property="Background" Value="#77F0F8FF"/>
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type ScrollBar}">
- <Grid x:Name="Bg" Background="Red" SnapsToDevicePixels="true">
- <Grid.ColumnDefinitions>
- <ColumnDefinition />
- </Grid.ColumnDefinitions>
- <Track x:Name="PART_Track" IsEnabled="{TemplateBinding IsMouseOver}">
- <Track.DecreaseRepeatButton>
- <RepeatButton Command="{x:Static ScrollBar.PageLeftCommand}" Style="{StaticResource HorizontalScrollBarPageButton}"/>
- </Track.DecreaseRepeatButton>
- <Track.IncreaseRepeatButton>
- <RepeatButton Command="{x:Static ScrollBar.PageRightCommand}" Style="{StaticResource HorizontalScrollBarPageButton}"/>
- </Track.IncreaseRepeatButton>
- <Track.Thumb>
- <Thumb Style="{StaticResource ScrollBarThumb}" />
- </Track.Thumb>
- </Track>
- </Grid>
- <ControlTemplate.Triggers>
- <Trigger Property="IsEnabled" Value="false">
- <Setter Property="Background" TargetName="Bg" Value="{StaticResource ScrollBarDisabledBackground}"/>
- </Trigger>
- </ControlTemplate.Triggers>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Trigger>
- </Style.Triggers>
- </Style>
- </Window.Resources>
- <Grid>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock x:Name="_TBTitle" Text="操作详情" Margin="5" FontSize="14" Foreground="WhiteSmoke" HorizontalAlignment="Left"/>
- <!--<Border Grid.Row="1" Background="#FFF9F9F9" Margin="5" CornerRadius="7">
- <vw:WindturbineDetails x:Name="_WDMain" Margin="5"/>
- </Border>-->
- <Border Grid.Row="1" Background="#FFF9F9F9" Margin="5" CornerRadius="7">
- <TabControl Background="{x:Null}" Margin="3">
- <TabItem Header="主要参数">
- <vw:WindturbineDetails x:Name="_WDMain" Margin="5"/>
- </TabItem>
- <TabItem Header="测点详情">
- <vw:PointDetails x:Name="_PDMain" Margin="5"/>
- </TabItem>
- <!--<TabItem Header="实时报警">
- <am:WindturbineRealTimeAlarm x:Name="_WAR"/>
- </TabItem>
- <TabItem Header="历史报警">
- <am:WindturbineHistoryAlarm x:Name="_WAH"/>
- </TabItem> -->
- <TabItem Header="报警信息">
- <am:WindturbineHistoryAlarm x:Name="_WAC"/>
- </TabItem>
- <!--<TabItem Header="状态变化">
- <vw:StateChange x:Name="_SC"/>
- </TabItem>-->
- </TabControl>
- </Border>
- <Button Grid.ColumnSpan="2" Height="25" Width="51.8" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="3,0" BorderBrush="{x:Null}" Foreground="{x:Null}" Padding="0,0,0,0" BorderThickness="0,0,0,0" Background="{x:Null}" Click="Button_Click" Tag="close" WindowChrome.IsHitTestVisibleInChrome="True">
- <Image Source="pack://application:,,,/智动启停;component/Images/PV/close.png"/>
- </Button>
- </Grid>
- </Grid>
- </Window>
|