chr
2025-01-03 31a636e735a0addc56e4f4527f500b7aa0874eb5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Window x:Class="PdmSwPlugin.Common.Util.UI.MultiExWindow"
             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:PdmSwPlugin.Common.Util.UI"
             mc:Ignorable="d" 
        WindowStartupLocation="CenterScreen"
        Title="{Binding title}"
        Loaded="Window_Loaded"
             Height="600" Width="500">
    <DataGrid x:Name="table"
          AutoGenerateColumns="False"
            CanUserAddRows="False"
            CanUserSortColumns="False"
            CanUserDeleteRows="False">
        <DataGrid.Columns>
            <DataGridTextColumn Header="异常信息" IsReadOnly="True" Width="*" Binding="{Binding Mode=OneWay}"/>
        </DataGrid.Columns>
    </DataGrid>
</Window>