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.
28 lines
1.3 KiB
28 lines
1.3 KiB
<Window x:Class="formula_manage.EX.Exchange"
|
|
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:formula_manage.EX"
|
|
mc:Ignorable="d"
|
|
Title="Exchange" Height="720" Width="1280" MinHeight="720" MinWidth="1280" Background="#FFE0E0E0">
|
|
<Grid>
|
|
<DataGrid x:Name="gridLog" Margin="5,5,0,5" HorizontalAlignment="Left" Width="250">
|
|
<DataGrid.Columns>
|
|
<!--列信息绑定-->
|
|
<DataGridTextColumn Binding="{Binding Name}" Header="文件" Width="200" MaxWidth="200" MinWidth="100"/>
|
|
<DataGridTextColumn Binding="{Binding Name}" Header="容量" Width="50" MaxWidth="50" MinWidth="50"/>
|
|
</DataGrid.Columns>
|
|
</DataGrid>
|
|
|
|
|
|
<RichTextBox x:Name="Log" Margin="255,5,5,5" IsReadOnly="True" VerticalScrollBarVisibility="Visible" Background="White">
|
|
<FlowDocument>
|
|
<Paragraph>
|
|
<Run Text="LOG"/>
|
|
</Paragraph>
|
|
</FlowDocument>
|
|
</RichTextBox>
|
|
|
|
</Grid>
|
|
</Window>
|
|
|