更新整理

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,16 +1,15 @@
<ui:FluentWindowEx
x:Class="ShrlAlgo.RvKits.RvIndependent.NetworkCreator.NetworkCreatorView"
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:ui="https://github.com/ShrlAlgo/WPFluent"
Title="物探管网"
Width="500"
Height="100"
MinHeight="110"
mc:Ignorable="d">
Title="物探管网"
Width="500"
mc:Ignorable="d"
x:Class="ShrlAlgoToolkit.RevitAddins.RvIndependent.NetworkCreator.NetworkCreatorView"
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:ui="https://github.com/ShrlAlgo/WPFluent"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Window.Resources>
<ResourceDictionary Source="pack://application:,,,/ShrlAlgoToolkit.RevitAddins;component/WPFUI.xaml" />
</Window.Resources>
@@ -19,58 +18,58 @@
Columns="*,Auto,Auto,Auto"
Rows="Auto,Auto">
<ui:TextBox
x:Name="TbXlsxPath"
Grid.Row="0"
Grid.Column="0"
Grid.Row="0"
IsReadOnly="True"
PlaceholderText="Excel文件"
TextWrapping="NoWrap"
ToolTip="双击选择文件" />
ToolTip="双击选择文件"
x:Name="TbXlsxPath" />
<Button
x:Name="ExcelSelectBtn"
Grid.Row="0"
Grid.Column="1"
Click="BtnExcelSelect_Click"
Content="选择文件" />
<ui:TextBox
x:Name="TbParaName"
Content="选择文件"
Grid.Column="1"
Grid.Row="0"
x:Name="ExcelSelectBtn" />
<ui:TextBox
Grid.Column="2"
Grid.ColumnSpan="2"
Grid.Row="0"
PlaceholderText="参数名"
TextWrapping="Wrap" />
TextWrapping="Wrap"
x:Name="TbParaName" />
<ui:TextBox
x:Name="TbFamilyPath"
Grid.Row="1"
Grid.Column="0"
VerticalAlignment="Center"
Cursor="Arrow"
Grid.Column="0"
Grid.Row="1"
IsReadOnly="True"
MouseDoubleClick="TbFamilyPath_MouseDoubleClick"
PlaceholderText="族文件"
TextWrapping="NoWrap"
ToolTip="双击选择文件" />
ToolTip="双击选择文件"
VerticalAlignment="Center"
x:Name="TbFamilyPath" />
<Button
x:Name="BtnFamilyInit"
Grid.Row="1"
Grid.Column="1"
Content="选择族"
Cursor="Hand" />
<ComboBox
x:Name="CbSheetName"
Cursor="Hand"
Grid.Column="1"
Grid.Row="1"
Grid.Column="2"
Width="120"
x:Name="BtnFamilyInit" />
<ComboBox
DisplayMemberPath="Name"
Grid.Column="2"
Grid.Row="1"
SelectedValuePath="Index"
SelectionChanged="CBSheetName_SelectionChanged"
Text="表名" />
Text="表名"
Width="120"
x:Name="CbSheetName" />
<Button
x:Name="BtnApple"
Grid.Row="1"
Grid.Column="3"
Click="BtnApply_Click"
Content="创建"
ToolTip="创建模型" />
Grid.Column="3"
Grid.Row="1"
ToolTip="创建模型"
x:Name="BtnApple" />
</ui:AutoGrid>
</ui:FluentWindowEx>