修复文字错误,和部分配色问题
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
x:Class="ShrlAlgoToolkit.RevitAddins.RvFamily.FamilyProcessorView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:drawing="clr-namespace:System.Drawing;assembly=System.Drawing"
|
||||
xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
|
||||
xmlns:local="clr-namespace:ShrlAlgoToolkit.RevitAddins.RvFamily"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
@@ -63,20 +64,20 @@
|
||||
Grid.Row="1"
|
||||
VerticalAlignment="Center">
|
||||
<CheckBox Content="添加族类别文件夹" IsChecked="{Binding CreateCategoryFolder}" />
|
||||
<CheckBox Content="文件名添加族类别" IsChecked="{Binding AddCategoryui:InputAssist.Prefix}" />
|
||||
<CheckBox Content="文件名添加族类别" IsChecked="{Binding AddCategoryPrefix}" />
|
||||
<CheckBox Content="以三维为默认视图" IsChecked="{Binding View3dAsDefault}" />
|
||||
</StackPanel>
|
||||
<TextBox
|
||||
ui:InputAssist.Placeholder="保存路径"
|
||||
Text="{Binding PathToSaveFamily}"
|
||||
TextOptions.TextFormattingMode="Display" />
|
||||
TextOptions.TextFormattingMode="Display"
|
||||
ui:InputAssist.Placeholder="保存路径" />
|
||||
<Button
|
||||
Command="{Binding SelectDirectoryCommand}"
|
||||
Content="路径选择"
|
||||
Cursor="Hand"
|
||||
HorizontalAlignment="Stretch"
|
||||
ui:ButtonAssist.Icon="{ui:Icon '',
|
||||
FontFamily={StaticResource BoxIcons}}" />
|
||||
FontFamily={StaticResource BoxIcons}}" />
|
||||
<ComboBox
|
||||
DisplayMemberPath="Title"
|
||||
ItemsSource="{Binding SourceDocsList}"
|
||||
@@ -94,7 +95,7 @@
|
||||
Content="导出保存"
|
||||
HorizontalAlignment="Stretch"
|
||||
ui:ButtonAssist.Icon="{ui:Icon Glyph=,
|
||||
FontFamily={StaticResource BoxIcons}}" />
|
||||
FontFamily={StaticResource BoxIcons}}" />
|
||||
</ui:Grid>
|
||||
</TabItem>
|
||||
<TabItem Header="传递族">
|
||||
|
||||
@@ -7,7 +7,7 @@ using Nice3point.Revit.Toolkit.External.Handlers;
|
||||
|
||||
namespace ShrlAlgoToolkit.RevitAddins.RvView;
|
||||
|
||||
public partial class ElementsControlDock : Page, IDockablePaneProvider
|
||||
public partial class ElementsControlDock : IDockablePaneProvider
|
||||
{
|
||||
public ElementsControlDock()
|
||||
{
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<GroupBox Grid.ColumnSpan="2">
|
||||
<GroupBox.Header>
|
||||
<StackPanel Orientation="Horizontal">
|
||||
<ui:SymbolIcon Symbol="History16" />
|
||||
<ui:IconElement Symbol="History" />
|
||||
<TextBlock Margin="5,0,0,0" Text="历史记录" />
|
||||
</StackPanel>
|
||||
</GroupBox.Header>
|
||||
@@ -71,8 +71,8 @@
|
||||
Grid.Column="0"
|
||||
Grid.Row="2"
|
||||
HorizontalAlignment="Stretch"
|
||||
ui:ButtonAssist.Icon="{ui:SymbolIcon Add32}"
|
||||
ToolTip="记录剖面框,以便复用" />
|
||||
ToolTip="记录剖面框,以便复用"
|
||||
ui:ButtonAssist.Icon="{ui:Icon SymbolValue=Add}" />
|
||||
<Button
|
||||
Command="{Binding RemoveSectionBoxCommand}"
|
||||
CommandParameter="{Binding SelectedItem, ElementName=HistoryListBox}"
|
||||
@@ -80,8 +80,8 @@
|
||||
Grid.Column="1"
|
||||
Grid.Row="2"
|
||||
HorizontalAlignment="Stretch"
|
||||
ui:ButtonAssist.Icon="{ui:SymbolIcon Delete32}"
|
||||
ToolTip="删除已记录的剖面框" />
|
||||
ToolTip="删除已记录的剖面框"
|
||||
ui:ButtonAssist.Icon="{ui:Icon SymbolValue=Delete}" />
|
||||
<Button
|
||||
Command="{Binding UpdateSectionBoxCommand}"
|
||||
CommandParameter="{Binding SelectedValue, ElementName=HistoryListBox}"
|
||||
@@ -89,15 +89,15 @@
|
||||
Grid.Column="0"
|
||||
Grid.Row="3"
|
||||
HorizontalAlignment="Stretch"
|
||||
ui:ButtonAssist.Icon="{ui:SymbolIcon Replay20}"
|
||||
ToolTip="返回历史记录的剖面框" />
|
||||
ToolTip="返回历史记录的剖面框"
|
||||
ui:ButtonAssist.Icon="{ui:Icon SymbolValue=KeyboardReturn}" />
|
||||
<Button
|
||||
Command="{Binding ResetSectionBoxCommand}"
|
||||
Content="设置剖面框"
|
||||
Grid.Column="1"
|
||||
Grid.Row="3"
|
||||
HorizontalAlignment="Stretch"
|
||||
ui:ButtonAssist.Icon="{ui:SymbolIcon Box20}"
|
||||
ToolTip="重新设置新的剖面框" />
|
||||
ToolTip="重新设置新的剖面框"
|
||||
ui:ButtonAssist.Icon="{ui:Icon SymbolValue=Box}" />
|
||||
</ui:Grid>
|
||||
</ui:NeoWindow>
|
||||
@@ -237,22 +237,22 @@
|
||||
Cursor="IBeam"
|
||||
Grid.Column="0"
|
||||
Grid.Row="1"
|
||||
ui:InputAssist.Placeholder="搜索视图"
|
||||
Text="{Binding SearchText, UpdateSourceTrigger=PropertyChanged}"
|
||||
ui:InputAssist.Placeholder="搜索视图"
|
||||
x:Name="TbSearch" />
|
||||
<Button
|
||||
Command="{Binding SearchCommand}"
|
||||
Content="搜索"
|
||||
Grid.Column="1"
|
||||
Grid.Row="1"
|
||||
ui:ButtonAssist.Icon="{ui:SymbolIcon Search24}"
|
||||
IsDefault="True" />
|
||||
IsDefault="True"
|
||||
ui:ButtonAssist.Icon="{ui:Icon SymbolValue=Search}" />
|
||||
<Button
|
||||
Command="{Binding ConfirmCommand}"
|
||||
Content="应用"
|
||||
Grid.Column="2"
|
||||
Grid.Row="1"
|
||||
ui:ButtonAssist.Icon="{ui:SymbolIcon EditSettings20}" />
|
||||
ui:ButtonAssist.Icon="{ui:Icon SymbolValue=Edit}" />
|
||||
|
||||
</ui:Grid>
|
||||
</ui:NeoWindow>
|
||||
@@ -148,7 +148,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\NeuWPF\NeoUI\NeoUI.csproj" />
|
||||
<ProjectReference Include="..\NeoUI\NeoUI\NeoUI.csproj" />
|
||||
<ProjectReference Include="..\ShrlAlgoToolkit.Core\ShrlAlgoToolkit.Core.csproj" />
|
||||
<ProjectReference Include="..\ShrlAlgoToolkit.Mvvm\ShrlAlgoToolkit.Mvvm.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
Reference in New Issue
Block a user