|
|
|
|
<UserControl x:Class="Kingo.Plugin.NYYP.View.UCNYYP"
|
|
|
|
|
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:Kingo.Plugin.NYYP.View"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
|
|
|
<Grid Background="White">
|
|
|
|
|
<!--<ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Disabled">-->
|
|
|
|
|
<Grid x:Name="gridContent" Grid.Row="2" TextElement.FontSize="12" MinWidth="540">
|
|
|
|
|
<!--<ScrollViewer Grid.Row="0" Grid.Column="0" x:Name="scrollContent" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto" Template="{DynamicResource ScrollViewerControlTemplate}">-->
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="auto" />
|
|
|
|
|
<RowDefinition Height="auto" />
|
|
|
|
|
<RowDefinition Height="auto" />
|
|
|
|
|
<RowDefinition Height="auto" />
|
|
|
|
|
<RowDefinition />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<!--<TreeView x:Name="tvDataList" Grid.Row="0" SelectedItemChanged="tvDataList_SelectedItemChanged" PreviewMouseUp="tvDataList_PreviewMouseUp" MouseDown="tvDataList_MouseDown">
|
|
|
|
|
</TreeView>-->
|
|
|
|
|
<ListBox x:Name="tvDataList" SelectionChanged="tvDataList_SelectionChanged" PreviewMouseUp="tvDataList_PreviewMouseUp" Padding="30,0" >
|
|
|
|
|
<ListBox.ItemContainerStyle>
|
|
|
|
|
<Style TargetType="ListBoxItem">
|
|
|
|
|
<Setter Property="Template">
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="ListBoxItem">
|
|
|
|
|
<StackPanel Orientation="Horizontal" Height="28">
|
|
|
|
|
<ContentPresenter VerticalAlignment="Center" Margin="3,0,0,0"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</ControlTemplate>
|
|
|
|
|
</Setter.Value>
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
</ListBox.ItemContainerStyle>
|
|
|
|
|
</ListBox>
|
|
|
|
|
|
|
|
|
|
<StackPanel Grid.Row="1" Grid.ColumnSpan="2" Background="#F6F6F6" Orientation="Horizontal" Height="34" >
|
|
|
|
|
<Image Source="pack://siteoforigin:,,,/Images/test.png" VerticalAlignment="Top" Height="18" Width="18" Margin="5,9,5,0"/>
|
|
|
|
|
<TextBlock VerticalAlignment="Center" Text="内业预判"></TextBlock>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<Grid x:Name="NYYPInfoPanel" Grid.Row="1">
|
|
|
|
|
<!--<local:UCNYYPInfo />-->
|
|
|
|
|
</Grid>
|
|
|
|
|
<StackPanel Grid.Row="3" Grid.ColumnSpan="2" Background="#F6F6F6" Orientation="Horizontal" Height="34" >
|
|
|
|
|
<Image Source="pack://siteoforigin:,,,/Images/test.png" VerticalAlignment="Top" Height="18" Width="18" Margin="5,9,5,0"/>
|
|
|
|
|
<TextBlock VerticalAlignment="Center" Text="图斑信息"></TextBlock>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<Grid x:Name="TBInfo" Margin="4,2" Grid.Row="4">
|
|
|
|
|
<!--<local:UCWYInfo />-->
|
|
|
|
|
</Grid>
|
|
|
|
|
</Grid>
|
|
|
|
|
<!--</ScrollViewer>-->
|
|
|
|
|
</Grid>
|
|
|
|
|
<!--</ScrollViewer>-->
|
|
|
|
|
</Grid>
|
|
|
|
|
</UserControl>
|