整理
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<ui:FluentWindowEx
|
||||
<ui:NeoWindow
|
||||
Height="462"
|
||||
MinHeight="580"
|
||||
MinWidth="1000"
|
||||
@@ -7,12 +7,12 @@
|
||||
WindowStartupLocation="CenterScreen"
|
||||
x:Class="ShrlAlgoToolkit.RevitAddins.RvIndependent.MetroGauges.GaugesModelView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:ui="https://github.com/ShrlAlgo/WPFluent"
|
||||
xmlns:ui="https://github.com/ShrlAlgo/NeoUI"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<Window.Resources>
|
||||
<ResourceDictionary Source="pack://application:,,,/ShrlAlgoToolkit.RevitAddins;component/WPFUI.xaml" />
|
||||
</Window.Resources>
|
||||
<ui:AutoGrid
|
||||
<ui:Grid
|
||||
ChildMargin="5"
|
||||
Columns="*,Auto"
|
||||
Rows="*,*">
|
||||
@@ -117,5 +117,5 @@
|
||||
x:Name="btnCreateForm" />
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</ui:AutoGrid>
|
||||
</ui:FluentWindowEx>
|
||||
</ui:Grid>
|
||||
</ui:NeoWindow>
|
||||
@@ -1,4 +1,4 @@
|
||||
<wpf:FluentWindowEx
|
||||
<ui:NeoWindow
|
||||
Height="280"
|
||||
MinWidth="300"
|
||||
Title="简易盾构区间"
|
||||
@@ -11,53 +11,53 @@
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:metroTunnel="clr-namespace:ShrlAlgoToolkit.RevitAddins.RvIndependent"
|
||||
xmlns:metroTunnel1="clr-namespace:ShrlAlgoToolkit.RevitAddins.RvIndependent.MetroTunnel"
|
||||
xmlns:wpf="https://github.com/ShrlAlgo/WPFluent"
|
||||
xmlns:ui="https://github.com/ShrlAlgo/NeoUI"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<Window.Resources>
|
||||
<ResourceDictionary Source="pack://application:,,,/ShrlAlgoToolkit.RevitAddins;component/WPFUI.xaml" />
|
||||
</Window.Resources>
|
||||
<wpf:AutoGrid
|
||||
<ui:Grid
|
||||
ChildMargin="5"
|
||||
Columns="*,*"
|
||||
Rows="Auto,Auto,Auto,Auto,*">
|
||||
<wpf:TextBoxEx
|
||||
Prefix="邻接块(前)角度"
|
||||
Suffix="°"
|
||||
<TextBox
|
||||
ui:InputAssist.Prefix="邻接块(前)角度"
|
||||
ui:InputAssist.Suffix="°"
|
||||
Text="{Binding FrontTubeAngle}"
|
||||
ToolTip="值域:50~90°" />
|
||||
<wpf:TextBoxEx
|
||||
Prefix="标准块角度"
|
||||
Suffix="°"
|
||||
<TextBox
|
||||
ui:InputAssist.Prefix="标准块角度"
|
||||
ui:InputAssist.Suffix="°"
|
||||
Text="{Binding StandardTubeAngle}"
|
||||
ToolTip="值域:60~90°" />
|
||||
<wpf:TextBoxEx
|
||||
Prefix="邻接块(后)角度"
|
||||
Suffix="°"
|
||||
<TextBox
|
||||
ui:InputAssist.Prefix="邻接块(后)角度"
|
||||
ui:InputAssist.Suffix="°"
|
||||
Text="{Binding BackTubeAngle}"
|
||||
ToolTip="值域:50~90°" />
|
||||
<wpf:TextBoxEx
|
||||
Prefix="标准块一侧角度"
|
||||
Suffix="°"
|
||||
<TextBox
|
||||
ui:InputAssist.Prefix="标准块一侧角度"
|
||||
ui:InputAssist.Suffix="°"
|
||||
Text="{Binding StartAngle}"
|
||||
ToolTip="路线前进方向反向观察,标准块一侧角度,值域:0~90°" />
|
||||
<wpf:TextBoxEx
|
||||
Prefix="错缝变化角度"
|
||||
Suffix="°"
|
||||
<TextBox
|
||||
ui:InputAssist.Prefix="错缝变化角度"
|
||||
ui:InputAssist.Suffix="°"
|
||||
Text="{Binding StaggerAngle}"
|
||||
ToolTip="值域:0~90°" />
|
||||
<wpf:TextBoxEx
|
||||
Prefix="隧道管片外径"
|
||||
Suffix="mm"
|
||||
<TextBox
|
||||
ui:InputAssist.Prefix="隧道管片外径"
|
||||
ui:InputAssist.Suffix="mm"
|
||||
Text="{Binding TubeOuterDiameter}"
|
||||
ToolTip="值域:6000~10000mm" />
|
||||
<wpf:TextBoxEx
|
||||
Prefix="管片厚度"
|
||||
Suffix="mm"
|
||||
<TextBox
|
||||
ui:InputAssist.Prefix="管片厚度"
|
||||
ui:InputAssist.Suffix="mm"
|
||||
Text="{Binding TubeThickness}"
|
||||
ToolTip="值域:200~500mm" />
|
||||
<wpf:TextBoxEx
|
||||
Prefix="管片宽度"
|
||||
Suffix="mm"
|
||||
<TextBox
|
||||
ui:InputAssist.Prefix="管片宽度"
|
||||
ui:InputAssist.Suffix="mm"
|
||||
Text="{Binding TubeWidth}"
|
||||
ToolTip="值域:1000~3000mm" />
|
||||
<ComboBox SelectedIndex="{Binding AssembleSelectedIndex, UpdateSourceTrigger=PropertyChanged}" ToolTip="错缝形式">
|
||||
@@ -70,5 +70,5 @@
|
||||
Command="{Binding ConfirmCommand}"
|
||||
CommandParameter="{Binding RelativeSource={RelativeSource AncestorType={x:Type Window}, Mode=FindAncestor}}"
|
||||
Content="布置" />
|
||||
</wpf:AutoGrid>
|
||||
</wpf:FluentWindowEx>
|
||||
</ui:Grid>
|
||||
</ui:NeoWindow>
|
||||
@@ -1,4 +1,4 @@
|
||||
<ui:FluentWindowEx
|
||||
<ui:NeoWindow
|
||||
Height="100"
|
||||
MinHeight="110"
|
||||
Title="物探管网"
|
||||
@@ -8,20 +8,20 @@
|
||||
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:ui="https://github.com/ShrlAlgo/NeoUI"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<Window.Resources>
|
||||
<ResourceDictionary Source="pack://application:,,,/ShrlAlgoToolkit.RevitAddins;component/WPFUI.xaml" />
|
||||
</Window.Resources>
|
||||
<ui:AutoGrid
|
||||
<ui:Grid
|
||||
ChildMargin="5"
|
||||
Columns="*,Auto,Auto,Auto"
|
||||
Rows="Auto,Auto">
|
||||
<ui:TextBox
|
||||
<TextBox
|
||||
Grid.Column="0"
|
||||
Grid.Row="0"
|
||||
IsReadOnly="True"
|
||||
PlaceholderText="Excel文件"
|
||||
ui:InputAssist.Placeholder="Excel文件"
|
||||
TextWrapping="NoWrap"
|
||||
ToolTip="双击选择文件"
|
||||
x:Name="TbXlsxPath" />
|
||||
@@ -31,20 +31,20 @@
|
||||
Grid.Column="1"
|
||||
Grid.Row="0"
|
||||
x:Name="ExcelSelectBtn" />
|
||||
<ui:TextBox
|
||||
<TextBox
|
||||
Grid.Column="2"
|
||||
Grid.ColumnSpan="2"
|
||||
Grid.Row="0"
|
||||
PlaceholderText="参数名"
|
||||
ui:InputAssist.Placeholder="参数名"
|
||||
TextWrapping="Wrap"
|
||||
x:Name="TbParaName" />
|
||||
<ui:TextBox
|
||||
<TextBox
|
||||
Cursor="Arrow"
|
||||
Grid.Column="0"
|
||||
Grid.Row="1"
|
||||
IsReadOnly="True"
|
||||
MouseDoubleClick="TbFamilyPath_MouseDoubleClick"
|
||||
PlaceholderText="族文件"
|
||||
ui:InputAssist.Placeholder="族文件"
|
||||
TextWrapping="NoWrap"
|
||||
ToolTip="双击选择文件"
|
||||
VerticalAlignment="Center"
|
||||
@@ -71,5 +71,5 @@
|
||||
Grid.Row="1"
|
||||
ToolTip="创建模型"
|
||||
x:Name="BtnApple" />
|
||||
</ui:AutoGrid>
|
||||
</ui:FluentWindowEx>
|
||||
</ui:Grid>
|
||||
</ui:NeoWindow>
|
||||
Reference in New Issue
Block a user