更新整理

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,19 +1,19 @@
<ui:FluentWindowEx
x:Class="ShrlAlgo.RvKits.RvMEP.MoveMEPCurveView"
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.RvMEP"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ui="https://github.com/ShrlAlgo/WPFluent"
Height="310"
MinHeight="310"
MinWidth="250"
Title="移动管线"
Width="250"
Height="310"
MinWidth="250"
MinHeight="310"
d:DataContext="{d:DesignInstance Type=local:MoveMEPCurveViewModel}"
mc:Ignorable="d">
mc:Ignorable="d"
x:Class="ShrlAlgoToolkit.RevitAddins.RvMEP.MoveMEPCurveView"
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.RvMEP"
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">
<b:Interaction.Triggers>
<b:EventTrigger EventName="Closing">
<b:InvokeCommandAction Command="{Binding ClosingCommand}" />
@@ -45,15 +45,15 @@
ToolTip="上下移动的距离(需要区分正负)或与参考的间距" />
<ui:StackPanel Orientation="Horizontal" Spacing="5">
<Button
HorizontalAlignment="Stretch"
ui:StackPanel.Fill="Fill"
Command="{Binding SelectCommand}"
Content="选择" />
<Button
Content="选择"
HorizontalAlignment="Stretch"
ui:StackPanel.Fill="Fill"
ui:StackPanel.Fill="Fill" />
<Button
Command="{Binding MoveCommand}"
Content="移动" />
Content="移动"
HorizontalAlignment="Stretch"
ui:StackPanel.Fill="Fill" />
</ui:StackPanel>
</ui:StackPanel>
</ui:FluentWindowEx>