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.
|
|
|
|
<UserControl x:Class="Kingo.Plugin.DLTB_IDG.View.ZLDataModifyView"
|
|
|
|
|
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:kui="clr-namespace:KUI;assembly=KUI"
|
|
|
|
|
mc:Ignorable="d" MaxHeight="1200" MaxWidth="400">
|
|
|
|
|
<ScrollViewer Focusable="True" IsEnabled="True" x:Name="ScrollView" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled">
|
|
|
|
|
<StackPanel>
|
|
|
|
|
<Grid Background="White" Width="400">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="780"/>
|
|
|
|
|
<RowDefinition Height="45"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid x:Name="TBInfo" Grid.Row="0">
|
|
|
|
|
</Grid>
|
|
|
|
|
<Grid x:Name="TBBtn" Grid.Row="1">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<kui:KFontIconButton Grid.Row="1" Grid.Column="0" FIcon="" HorizontalAlignment="Center" Visibility="Collapsed" VerticalAlignment="Center" Width="80" Height="25" x:Name="btnSave" Content="修改保存" Click="BtnSave_Click" />
|
|
|
|
|
<kui:KFontIconButton Grid.Row="1" Grid.Column="1" FIcon="" HorizontalAlignment="Center" Visibility="Collapsed" VerticalAlignment="Center" Width="80" Height="25" x:Name="btnDele" Content="变更还原" Click="BtnDele_Click" />
|
|
|
|
|
</Grid>
|
|
|
|
|
</Grid>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</ScrollViewer>
|
|
|
|
|
</UserControl>
|