2025-08-15 16:44:13 +08:00
|
|
|
<UserControl
|
|
|
|
x:Class="SWS.Electrical.Views.DialogAutoArrangeLayout"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2025-09-02 11:21:40 +08:00
|
|
|
xmlns:Custom="http://www.galasoft.ch/mvvmlight"
|
2025-08-15 16:44:13 +08:00
|
|
|
xmlns:CustomControl="clr-namespace:SWS.CustomControl;assembly=SWS.CustomControl"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
|
2025-09-02 11:21:40 +08:00
|
|
|
xmlns:local="clr-namespace:SWS.Electrical"
|
2025-08-15 16:44:13 +08:00
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:prism="http://prismlibrary.com/"
|
|
|
|
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
|
2025-09-22 09:21:04 +08:00
|
|
|
Width="900"
|
|
|
|
Height="700"
|
2025-08-15 16:44:13 +08:00
|
|
|
mc:Ignorable="d">
|
|
|
|
<prism:Dialog.WindowStyle>
|
|
|
|
<Style TargetType="Window">
|
|
|
|
<Setter Property="Width" Value="{Binding Source={x:Static SystemParameters.WorkArea}, Path=Width}" />
|
|
|
|
<Setter Property="Height" Value="{Binding Source={x:Static SystemParameters.WorkArea}, Path=Height}" />
|
|
|
|
|
|
|
|
<Setter Property="WindowState" Value="Normal" />
|
|
|
|
<Setter Property="WindowStyle" Value="None" />
|
|
|
|
<Setter Property="ResizeMode" Value="NoResize" />
|
|
|
|
<Setter Property="Visibility" Value="{Binding isShow}" />
|
|
|
|
</Style>
|
|
|
|
</prism:Dialog.WindowStyle>
|
2025-09-02 11:21:40 +08:00
|
|
|
<UserControl.Resources>
|
|
|
|
<ResourceDictionary>
|
2025-09-22 09:21:04 +08:00
|
|
|
<ResourceDictionary.MergedDictionaries>
|
|
|
|
<ResourceDictionary Source="pack://application:,,,/SWS.Electrical;component/Style/CustomStyles.xaml" />
|
|
|
|
</ResourceDictionary.MergedDictionaries>
|
2025-09-02 11:21:40 +08:00
|
|
|
<Style TargetType="DataGrid">
|
|
|
|
<Setter Property="RowHeaderWidth" Value="0" />
|
|
|
|
<Setter Property="AutoGenerateColumns" Value="False" />
|
|
|
|
<Setter Property="CanUserAddRows" Value="False" />
|
|
|
|
<Setter Property="CanUserResizeColumns" Value="False" />
|
|
|
|
<Setter Property="CanUserResizeRows" Value="False" />
|
|
|
|
<Setter Property="HorizontalGridLinesBrush" Value="LightGray" />
|
|
|
|
<Setter Property="VerticalGridLinesBrush" Value="LightGray" />
|
|
|
|
<Setter Property="IsReadOnly" Value="False" />
|
|
|
|
<Setter Property="BorderThickness" Value="1,0" />
|
|
|
|
<Setter Property="BorderBrush" Value="LightGray" />
|
|
|
|
<Setter Property="RowHeight" Value="30" />
|
|
|
|
<Setter Property="VerticalScrollBarVisibility" Value="Auto" />
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
<!-- DataGrid表头样式 -->
|
|
|
|
<Style TargetType="DataGridColumnHeader">
|
|
|
|
<Setter Property="FontSize" Value="13" />
|
|
|
|
<Setter Property="Background" Value="White" />
|
|
|
|
<Setter Property="BorderThickness" Value="1,1,1,1" />
|
|
|
|
<Setter Property="BorderBrush" Value="LightGray" />
|
|
|
|
<Setter Property="HorizontalContentAlignment" Value="Center" />
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
<!-- DataGrid复选框样式 -->
|
|
|
|
<Style x:Key="VerticalCheckBox" TargetType="CheckBox">
|
|
|
|
<Setter Property="VerticalAlignment" Value="Center" />
|
|
|
|
<Setter Property="FontSize" Value="16" />
|
|
|
|
<Setter Property="Template">
|
|
|
|
<Setter.Value>
|
|
|
|
<ControlTemplate TargetType="{x:Type CheckBox}">
|
|
|
|
<StackPanel Name="sp" HorizontalAlignment="Center">
|
|
|
|
<ContentPresenter Margin="2" HorizontalAlignment="Center" />
|
|
|
|
<Border
|
|
|
|
x:Name="bd"
|
|
|
|
Width="20"
|
|
|
|
Height="20"
|
|
|
|
BorderBrush="Gray"
|
|
|
|
BorderThickness="1.5">
|
|
|
|
<Border.Background>
|
|
|
|
<LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
|
|
|
|
<GradientStop Offset="0.05" Color="LightGray" />
|
|
|
|
<GradientStop Offset="1" Color="White" />
|
|
|
|
</LinearGradientBrush>
|
|
|
|
</Border.Background>
|
|
|
|
<Path
|
|
|
|
Name="checkPath"
|
|
|
|
Width="18"
|
|
|
|
Height="16"
|
|
|
|
Stroke="Black"
|
|
|
|
StrokeThickness="2" />
|
|
|
|
</Border>
|
|
|
|
</StackPanel>
|
|
|
|
<ControlTemplate.Triggers>
|
|
|
|
<Trigger Property="IsChecked" Value="True">
|
|
|
|
<Setter TargetName="checkPath" Property="Data" Value="M 1.5,5 L 7,13 17,0" />
|
|
|
|
</Trigger>
|
|
|
|
<Trigger Property="IsMouseOver" Value="True">
|
|
|
|
<Setter TargetName="bd" Property="Background" Value="LightGray" />
|
|
|
|
</Trigger>
|
|
|
|
</ControlTemplate.Triggers>
|
|
|
|
</ControlTemplate>
|
|
|
|
</Setter.Value>
|
|
|
|
</Setter>
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
<!-- DataGrid单元格选中样式 #6495ED -->
|
|
|
|
<Style TargetType="DataGridCell">
|
|
|
|
<Style.Triggers>
|
|
|
|
<Trigger Property="IsSelected" Value="True">
|
|
|
|
<Setter Property="Background" Value="Transparent" />
|
|
|
|
<Setter Property="Foreground" Value="#6495ED" />
|
|
|
|
<Setter Property="BorderThickness" Value="0" />
|
|
|
|
</Trigger>
|
|
|
|
</Style.Triggers>
|
|
|
|
</Style>
|
|
|
|
</ResourceDictionary>
|
|
|
|
</UserControl.Resources>
|
2025-09-22 09:21:04 +08:00
|
|
|
<telerik:RadBusyIndicator BusyContent="{Binding BusyContent}" IsBusy="{Binding IsBusy}">
|
|
|
|
<Grid>
|
2025-08-15 16:44:13 +08:00
|
|
|
<Grid.RowDefinitions>
|
2025-09-22 09:21:04 +08:00
|
|
|
<RowDefinition Height="auto" />
|
2025-09-02 11:21:40 +08:00
|
|
|
<RowDefinition Height="*" />
|
2025-09-22 09:21:04 +08:00
|
|
|
<RowDefinition Height="250" />
|
2025-08-15 16:44:13 +08:00
|
|
|
</Grid.RowDefinitions>
|
2025-09-22 09:21:04 +08:00
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="0.3*" />
|
|
|
|
<ColumnDefinition Width="0.7*" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<CustomControl:customWindowTitleBar
|
|
|
|
x:Name="titleBar"
|
2025-08-15 16:44:13 +08:00
|
|
|
Grid.Row="0"
|
2025-09-22 09:21:04 +08:00
|
|
|
Grid.ColumnSpan="2" />
|
2025-09-02 11:21:40 +08:00
|
|
|
<DataGrid
|
2025-09-22 09:21:04 +08:00
|
|
|
Grid.Row="1"
|
2025-09-02 11:21:40 +08:00
|
|
|
Grid.Column="0"
|
2025-09-22 09:21:04 +08:00
|
|
|
Height="auto"
|
2025-09-02 11:21:40 +08:00
|
|
|
AutoGenerateColumns="False"
|
|
|
|
CanUserAddRows="False"
|
|
|
|
HeadersVisibility="Column"
|
2025-09-22 09:21:04 +08:00
|
|
|
ItemsSource="{Binding listDrawings, Mode=TwoWay}"
|
2025-09-02 11:21:40 +08:00
|
|
|
RowHeight="22"
|
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Auto"
|
|
|
|
SelectionMode="Single">
|
|
|
|
<DataGrid.Columns>
|
2025-09-22 09:21:04 +08:00
|
|
|
<DataGridCheckBoxColumn
|
|
|
|
Width="30"
|
|
|
|
Binding="{Binding IsSelected}"
|
|
|
|
Header=""
|
|
|
|
IsReadOnly="False" />
|
|
|
|
<DataGridTextColumn
|
|
|
|
Width="*"
|
|
|
|
Binding="{Binding DrawingFileName}"
|
|
|
|
Header="布置图"
|
|
|
|
IsReadOnly="True" />
|
|
|
|
</DataGrid.Columns>
|
|
|
|
</DataGrid>
|
|
|
|
<Grid Grid.Row="1" Grid.Column="1">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="50" />
|
|
|
|
<RowDefinition Height="50" />
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<StackPanel
|
|
|
|
Grid.Row="0"
|
|
|
|
Height="30"
|
|
|
|
Margin="30,0,0,0"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Orientation="Horizontal">
|
|
|
|
<TextBlock
|
|
|
|
Width="auto"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
FontSize="16"
|
|
|
|
Text="范围:" />
|
|
|
|
<ComboBox
|
|
|
|
Grid.Column="1"
|
|
|
|
Width="120"
|
|
|
|
Height="25"
|
|
|
|
DisplayMemberPath="Key"
|
|
|
|
FontSize="16"
|
|
|
|
ItemsSource="{Binding listRange}"
|
|
|
|
SelectedItem="{Binding selectRange, Mode=TwoWay}" />
|
|
|
|
<ComboBox
|
|
|
|
Grid.Column="1"
|
|
|
|
Width="70"
|
|
|
|
Height="25"
|
|
|
|
Margin="5,0,0,0"
|
|
|
|
DisplayMemberPath="Key"
|
|
|
|
FontSize="16"
|
|
|
|
ItemsSource="{Binding listOperator}"
|
|
|
|
SelectedItem="{Binding selectOperator, Mode=TwoWay}" />
|
|
|
|
<CustomControl:MultiSelectComboBox
|
|
|
|
Grid.Column="1"
|
|
|
|
Width="250"
|
|
|
|
Height="25"
|
|
|
|
Margin="5,0,0,0"
|
|
|
|
DisplayMemberPath="Key"
|
|
|
|
FontSize="16"
|
|
|
|
ItemsSource="{Binding listValue}"
|
|
|
|
Text="{Binding inputValue, Mode=TwoWay}" />
|
|
|
|
<!--<ComboBox
|
|
|
|
Grid.Column="1"
|
|
|
|
Width="200"
|
|
|
|
Height="25"
|
|
|
|
Margin="5,0,0,0"
|
|
|
|
DisplayMemberPath="Key"
|
|
|
|
FontSize="16"
|
|
|
|
IsEditable="True"
|
|
|
|
ItemsSource="{Binding listValue}"
|
|
|
|
Text="{Binding inputValue, Mode=TwoWay}" />-->
|
|
|
|
<!--<TextBox
|
|
|
|
Width="200"
|
|
|
|
Height="25"
|
|
|
|
Margin="5,0,0,0"
|
|
|
|
FontSize="16"
|
|
|
|
Text="{Binding inputValue}" />-->
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
<StackPanel
|
|
|
|
Grid.Row="1"
|
|
|
|
Height="30"
|
|
|
|
Margin="30,0,0,0"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Orientation="Horizontal">
|
|
|
|
<Button
|
|
|
|
Width="160"
|
2025-10-09 17:50:08 +08:00
|
|
|
Margin="80,0,0,0"
|
2025-09-22 09:21:04 +08:00
|
|
|
Command="{Binding Command_GetBasePoint}"
|
|
|
|
Content="获取元件信息"
|
|
|
|
FontSize="16" />
|
|
|
|
<Button
|
|
|
|
Width="160"
|
|
|
|
Margin="20,0,0,0"
|
|
|
|
Command="{Binding Command_StartDrawing}"
|
|
|
|
Content="开始自动绘图"
|
|
|
|
FontSize="16" />
|
2025-10-09 17:50:08 +08:00
|
|
|
<CheckBox
|
|
|
|
Margin="40,0,0,0"
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
VerticalContentAlignment="Bottom"
|
|
|
|
Content="删除已画元件再绘制"
|
|
|
|
FontSize="12"
|
|
|
|
Foreground="Red"
|
|
|
|
IsChecked="{Binding isCheckDelete, Mode=TwoWay}" />
|
2025-09-22 09:21:04 +08:00
|
|
|
</StackPanel>
|
2025-09-22 14:28:19 +08:00
|
|
|
<TabControl
|
2025-09-22 09:21:04 +08:00
|
|
|
Grid.Row="2"
|
|
|
|
Grid.Column="0"
|
2025-09-22 14:28:19 +08:00
|
|
|
Height="auto">
|
|
|
|
<TabItem Header="{Binding NormalTagCount}">
|
|
|
|
<DataGrid
|
|
|
|
x:Name="dgTag"
|
|
|
|
AutoGenerateColumns="False"
|
|
|
|
CanUserAddRows="False"
|
|
|
|
CanUserResizeColumns="True"
|
|
|
|
HeadersVisibility="Column"
|
|
|
|
ItemsSource="{Binding listBasePoint, Mode=TwoWay}"
|
|
|
|
LoadingRow="dgTag_LoadingRow"
|
|
|
|
RowHeight="22"
|
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Auto"
|
|
|
|
SelectedItem="{Binding SelectedTag, Mode=TwoWay}"
|
|
|
|
SelectionMode="Single">
|
|
|
|
<DataGrid.Columns>
|
|
|
|
<!--<DataGridCheckBoxColumn Binding="{Binding IsSelected, Mode=TwoWay}">
|
|
|
|
<DataGridCheckBoxColumn.HeaderTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<CheckBox
|
|
|
|
x:Name="ckbSelectedAll"
|
|
|
|
Margin="4"
|
|
|
|
Click="CheckAll_Click"
|
|
|
|
IsChecked="{Binding DataContext.IsSelectAll, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, RelativeSource={RelativeSource AncestorType=UserControl, AncestorLevel=1}}" />
|
|
|
|
</DataTemplate>
|
|
|
|
</DataGridCheckBoxColumn.HeaderTemplate>
|
|
|
|
</DataGridCheckBoxColumn>-->
|
|
|
|
<DataGridTemplateColumn Width="30">
|
|
|
|
<DataGridTemplateColumn.Header>
|
|
|
|
<CheckBox IsChecked="{Binding DataContext.IsSelectAll, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, RelativeSource={RelativeSource AncestorType=UserControl, AncestorLevel=1}}">
|
|
|
|
<i:Interaction.Triggers>
|
|
|
|
<i:EventTrigger EventName="Click">
|
|
|
|
<i:InvokeCommandAction Command="{Binding DataContext.Command_SelectedAll, RelativeSource={RelativeSource AncestorType=UserControl, AncestorLevel=1}}" />
|
|
|
|
</i:EventTrigger>
|
|
|
|
</i:Interaction.Triggers>
|
|
|
|
</CheckBox>
|
|
|
|
</DataGridTemplateColumn.Header>
|
|
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<CheckBox
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
IsChecked="{Binding IsSelected, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
|
|
|
|
<i:Interaction.Triggers>
|
|
|
|
<i:EventTrigger EventName="Click">
|
|
|
|
<i:InvokeCommandAction Command="{Binding DataContext.Command_SelectedTag, RelativeSource={RelativeSource AncestorType=UserControl, AncestorLevel=1}}" CommandParameter="{Binding TagNumber}" />
|
|
|
|
</i:EventTrigger>
|
|
|
|
</i:Interaction.Triggers>
|
|
|
|
</CheckBox>
|
|
|
|
</DataTemplate>
|
|
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
|
|
</DataGridTemplateColumn>
|
|
|
|
<DataGridTemplateColumn Width="30" Header="序号">
|
|
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<TextBlock HorizontalAlignment="Center" Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=DataGridRow}, Path=Header}" />
|
|
|
|
</DataTemplate>
|
|
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
|
|
</DataGridTemplateColumn>
|
|
|
|
<!--<DataGridCheckBoxColumn
|
|
|
|
Width="30"
|
|
|
|
Binding="{Binding isChecked}"
|
|
|
|
Header=""
|
|
|
|
IsReadOnly="False" />-->
|
|
|
|
<DataGridTextColumn
|
|
|
|
Width="0.65*"
|
|
|
|
Binding="{Binding DrawingFileName}"
|
|
|
|
Header="布置图"
|
|
|
|
IsReadOnly="True" />
|
|
|
|
<DataGridTextColumn
|
|
|
|
Width="0.35*"
|
|
|
|
Binding="{Binding BasePointTagNumber}"
|
|
|
|
Header="基点"
|
|
|
|
IsReadOnly="True" />
|
|
|
|
<DataGridTextColumn
|
|
|
|
Width="110"
|
|
|
|
Binding="{Binding TagNumber}"
|
|
|
|
Header="元件位号"
|
|
|
|
IsReadOnly="True" />
|
|
|
|
<DataGridTextColumn
|
|
|
|
Width="60"
|
|
|
|
Binding="{Binding AutoDrawing}"
|
|
|
|
Header="绘制"
|
|
|
|
IsReadOnly="True" />
|
|
|
|
<DataGridTextColumn
|
|
|
|
Width="70"
|
|
|
|
Binding="{Binding TagPixelOnDwg}"
|
|
|
|
Header="句柄"
|
|
|
|
IsReadOnly="True" />
|
|
|
|
</DataGrid.Columns>
|
|
|
|
<DataGrid.RowStyle>
|
|
|
|
<Style TargetType="DataGridRow">
|
|
|
|
<Setter Property="Background" Value="White" />
|
|
|
|
<Style.Triggers>
|
|
|
|
<DataTrigger Binding="{Binding AutoDrawing}" Value="已绘制">
|
|
|
|
<Setter Property="Background" Value="LightGreen" />
|
|
|
|
</DataTrigger>
|
|
|
|
<DataTrigger Binding="{Binding AutoDrawing}" Value="已存在">
|
|
|
|
<Setter Property="Background" Value="LightYellow" />
|
|
|
|
</DataTrigger>
|
2025-10-09 17:50:08 +08:00
|
|
|
<DataTrigger Binding="{Binding AutoDrawing}" Value="已失败">
|
|
|
|
<Setter Property="Background" Value="Red" />
|
|
|
|
</DataTrigger>
|
2025-09-22 14:28:19 +08:00
|
|
|
</Style.Triggers>
|
|
|
|
</Style>
|
|
|
|
</DataGrid.RowStyle>
|
|
|
|
</DataGrid>
|
|
|
|
</TabItem>
|
|
|
|
<TabItem Header="{Binding ErrTagCount}">
|
|
|
|
<DataGrid
|
|
|
|
x:Name="dgErrTag"
|
|
|
|
AutoGenerateColumns="False"
|
|
|
|
CanUserAddRows="False"
|
|
|
|
CanUserResizeColumns="True"
|
|
|
|
HeadersVisibility="Column"
|
|
|
|
ItemsSource="{Binding listErrBasePoint, Mode=TwoWay}"
|
|
|
|
LoadingRow="dgTag_LoadingRow"
|
|
|
|
RowHeight="22"
|
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Auto"
|
|
|
|
SelectionMode="Single">
|
|
|
|
<DataGrid.Columns>
|
|
|
|
|
|
|
|
<DataGridTemplateColumn Width="50" Header="序号">
|
|
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<TextBlock HorizontalAlignment="Center" Text="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=DataGridRow}, Path=Header}" />
|
|
|
|
</DataTemplate>
|
|
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
|
|
</DataGridTemplateColumn>
|
|
|
|
|
|
|
|
<DataGridTextColumn
|
|
|
|
Width="0.65*"
|
|
|
|
Binding="{Binding DrawingFileName}"
|
|
|
|
Header="布置图"
|
|
|
|
IsReadOnly="True" />
|
|
|
|
<DataGridTextColumn
|
|
|
|
Width="0.35*"
|
|
|
|
Binding="{Binding BasePointTagNumber}"
|
|
|
|
Header="基点"
|
|
|
|
IsReadOnly="True" />
|
|
|
|
<DataGridTextColumn
|
|
|
|
Width="110"
|
|
|
|
Binding="{Binding TagNumber}"
|
|
|
|
Header="元件位号"
|
|
|
|
IsReadOnly="True" />
|
|
|
|
<DataGridTextColumn
|
|
|
|
Width="110"
|
|
|
|
Binding="{Binding AutoDrawing}"
|
|
|
|
Header="绘制"
|
|
|
|
IsReadOnly="True" />
|
|
|
|
|
|
|
|
</DataGrid.Columns>
|
|
|
|
</DataGrid>
|
|
|
|
</TabItem>
|
|
|
|
</TabControl>
|
|
|
|
|
2025-09-22 09:21:04 +08:00
|
|
|
</Grid>
|
|
|
|
<Grid
|
|
|
|
Grid.Row="2"
|
|
|
|
Grid.ColumnSpan="2"
|
|
|
|
Background="Black">
|
|
|
|
<ListBox
|
|
|
|
Background="Black"
|
|
|
|
ItemsSource="{Binding listMsg}"
|
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Visible">
|
|
|
|
<i:Interaction.Behaviors>
|
|
|
|
<local:ListBoxScrollToBottomBehavior />
|
|
|
|
</i:Interaction.Behaviors>
|
|
|
|
</ListBox>
|
|
|
|
</Grid>
|
2025-08-15 16:44:13 +08:00
|
|
|
</Grid>
|
2025-09-22 09:21:04 +08:00
|
|
|
</telerik:RadBusyIndicator>
|
2025-08-15 16:44:13 +08:00
|
|
|
</UserControl>
|