更新整理

This commit is contained in:
GG Z
2025-04-24 20:56:44 +08:00
parent 155cef46f8
commit 5b6d67b571
813 changed files with 14437 additions and 12362 deletions

View File

@@ -1,18 +1,17 @@
<ui:FluentWindowEx
x:Class="ShrlAlgo.RvKits.RvCommon.DetailSelectFiltersView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:b="http://schemas.microsoft.com/xaml/behaviors"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:ShrlAlgo.RvKits.RvCommon"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ui="https://github.com/ShrlAlgo/WPFluent"
Height="450"
Title="构件明细"
Width="800"
Height="450"
d:DataContext="{d:DesignInstance Type=local:DetailSelectFiltersViewModel}"
mc:Ignorable="d">
mc:Ignorable="d"
x:Class="ShrlAlgoToolkit.RevitAddins.RvCommon.DetailSelectFiltersView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:b="http://schemas.microsoft.com/xaml/behaviors"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:ShrlAlgoToolkit.RevitAddins.RvCommon"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ui="https://github.com/ShrlAlgo/WPFluent"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
@@ -41,9 +40,9 @@
<DataGridTextColumn Binding="{Binding Id}" Header="元素ID" />
<DataGridTextColumn Binding="{Binding CategoryName}" Header="类别名称" />
<DataGridTextColumn
Width="Auto"
Binding="{Binding Name}"
Header="名称" />
Header="名称"
Width="Auto" />
<!--<DataGridTextColumn Binding="{Binding ReferenceLevel?.Name}" Header="参照标高" />-->
<DataGridTextColumn Binding="{Binding LevelName}" Header="标高" />
<DataGridTextColumn Binding="{Binding ReferenceLevel}" Header="参照标高" />
@@ -72,15 +71,15 @@
</DataGrid>
<ui:StackPanel Grid.Row="1" Orientation="Horizontal">
<CheckBox
Margin="5"
Content="剖切"
IsChecked="{Binding IsCutting, UpdateSourceTrigger=PropertyChanged}"
Margin="5"
ToolTip="仅三维视图可用" />
<ui:TextBox
Margin="5"
ui:StackPanel.Fill="Fill"
PlaceholderText="请输入检索属性条目"
Text="{Binding SearchProp, UpdateSourceTrigger=PropertyChanged}" />
Text="{Binding SearchProp, UpdateSourceTrigger=PropertyChanged}"
ui:StackPanel.Fill="Fill" />
</ui:StackPanel>
</ui:AutoGrid>
</ui:FluentWindowEx>