You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
3.7 KiB
52 lines
3.7 KiB
<UserControl x:Class="Kingo.Plugin.NYYP.View.UCNYYPInfo" |
|
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" |
|
xmlns:kui="clr-namespace:KUI;assembly=KUI" |
|
xmlns:localtree="clr-namespace:Kingo.Plugin.NYYP" |
|
mc:Ignorable="d" |
|
d:DesignHeight="210" d:DesignWidth="500"> |
|
<Grid x:Name="JCDLTBInfo" Background="White"> |
|
<Grid Grid.Column="1" x:Name="gridInterpretaion" Background="White"> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="35" /> |
|
<RowDefinition /> |
|
<!--<RowDefinition Height="auto" /> |
|
<RowDefinition Height="50" />--> |
|
<!--<RowDefinition />--> |
|
</Grid.RowDefinitions> |
|
<!--<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="100"/> |
|
<ColumnDefinition Width="*"/> |
|
</Grid.ColumnDefinitions>--> |
|
<StackPanel Grid.Column="0" Grid.Row="0" Grid.ColumnSpan="4" Background="#F6F6F6" Orientation="Horizontal" Height="34"> |
|
<Image Source="/Kingo.Plugin.NYYP;component/Images/test.png" VerticalAlignment="Top" Height="18" Width="18" Margin="5,9,5,0"/> |
|
<TextBlock VerticalAlignment="Center" Text="内业预判"></TextBlock> |
|
</StackPanel> |
|
<Grid x:Name="grid" Grid.Row="1"> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="auto"/> |
|
<RowDefinition /> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="auto" MinWidth="100"/> |
|
<ColumnDefinition /> |
|
</Grid.ColumnDefinitions> |
|
</Grid> |
|
<!--<Label Content="需举证:" Grid.Row="1" VerticalContentAlignment="Center" HorizontalContentAlignment="Right" /> |
|
<CheckBox x:Name="cbNeedWY" IsChecked="{Binding SFJZStruct.Value,UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="1" VerticalAlignment="Center" Margin="10,0,0,0" /> |
|
<RadioButton Content="是" Foreground="DarkBlue" Name="rbtnWYTrue" Visibility="Collapsed" Grid.Column="1" Grid.Row="1" VerticalAlignment="Center" Margin="10,0,0,0"/> |
|
<RadioButton Content="否" Foreground="DarkBlue" Name="rbtnWYFalse" Visibility="Collapsed" Grid.Column="1" Grid.Row="1" VerticalAlignment="Center" Margin="80,0,0,0"/> |
|
|
|
--><!--<Label Content="内业预判地类" Grid.Row="2" VerticalContentAlignment="Center" HorizontalContentAlignment="Right" /> |
|
<localtree:AutoCompleteComboBox Grid.Column="1" Grid.Row="2" IsEditable="True" Height="27" Margin="4" FontSize="16" |
|
TextSearch.TextPath="NodeName" DisplayMemberPath="NodeName" SelectedValuePath="NodeID" |
|
IsTextSearchEnabled="True" x:Name="cmbCtr" VerticalAlignment="Center" VerticalContentAlignment="Center"> |
|
</localtree:AutoCompleteComboBox>--><!-- |
|
<Label Content="内业备注:" Grid.Row="3" VerticalContentAlignment="Center" HorizontalContentAlignment="Right" /> |
|
<TextBox x:Name="NYJYText" Grid.Column="1" Grid.Row="3" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Margin="4" TextWrapping="Wrap" Text="{Binding SFJZStruct.Value, UpdateSourceTrigger=LostFocus}"></TextBox>--> |
|
</Grid> |
|
</Grid> |
|
</UserControl>
|
|
|