更新整理

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,21 +1,20 @@
<ui:FluentWindowEx
x:Class="ShrlAlgo.RvKits.RvCivil.FloorFinishesView"
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:rvCivil="clr-namespace:ShrlAlgo.RvKits.RvCivil"
xmlns:ui="https://github.com/ShrlAlgo/WPFluent"
Height="500"
MinHeight="500"
MinWidth="275"
Title="房间饰面"
Width="200"
Height="500"
MinWidth="275"
MinHeight="500"
d:DataContext="{d:DesignInstance Type=rvCivil:FloorFinishesViewModel}"
mc:Ignorable="d"
ui:Design.Background="{DynamicResource ApplicationBackgroundBrush}"
ui:Design.Foreground="{DynamicResource TextFillColorPrimaryBrush}"
mc:Ignorable="d">
x:Class="ShrlAlgoToolkit.RevitAddins.RvCivil.FloorFinishesView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:rvCivil="clr-namespace:ShrlAlgoToolkit.RevitAddins.RvCivil"
xmlns:ui="https://github.com/ShrlAlgo/WPFluent"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
@@ -35,13 +34,13 @@
</GroupBox>
<GroupBox
Grid.Row="1"
VerticalAlignment="Stretch"
Header="楼板类型">
Header="楼板类型"
VerticalAlignment="Stretch">
<ListBox
x:Name="LbFloorType"
DisplayMemberPath="Name"
ItemsSource="{Binding FloorTypes}"
SelectedValue="{Binding SelectedFloorType, UpdateSourceTrigger=PropertyChanged}" />
SelectedValue="{Binding SelectedFloorType, UpdateSourceTrigger=PropertyChanged}"
x:Name="LbFloorType" />
</GroupBox>
<ui:TextBox
Grid.Row="2"
@@ -68,10 +67,10 @@
</TextBox.Text>
</TextBox>-->
<ui:Button
Grid.Row="3"
HorizontalAlignment="Stretch"
Command="{Binding PlaceFloorCommand}"
Content="布置"
Grid.Row="3"
HorizontalAlignment="Stretch"
Icon="{ui:FontIcon Glyph=&#xeab9;,
FontFamily={StaticResource BoxIcons}}" />
</ui:AutoGrid>