82 lines
4.1 KiB
XML
82 lines
4.1 KiB
XML
<Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Name="grdWordOptions">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" SharedSizeGroup="TitleColumn" />
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row='0' Margin="0,0,5,0">
|
|
<Label Content="Document name" />
|
|
<Rectangle Style="{DynamicResource InfoIcon}">
|
|
<Rectangle.ToolTip>
|
|
<TextBlock>
|
|
Full path to the name of the output file<LineBreak />
|
|
Default value is %MyDocuments%\%Organization%-%Date%.HTML<LineBreak />
|
|
Special folders and environmentvariables can be used
|
|
</TextBlock>
|
|
</Rectangle.ToolTip>
|
|
</Rectangle>
|
|
</StackPanel>
|
|
<Grid Grid.Column='1' Grid.Row='0' Margin="0,5,5,0" >
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="5" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<TextBox Text="" Name="txtHTMLDocumentName" />
|
|
<Button Grid.Column="2" Name="browseHTMLDocumentName" Padding="5,0,5,0" Width="50" ToolTip="Select output document">...</Button>
|
|
</Grid>
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row='1' Margin="0,0,5,0">
|
|
<Label Content="CSS Style" />
|
|
<Rectangle Style="{DynamicResource InfoIcon}">
|
|
<Rectangle.ToolTip>
|
|
<TextBlock>
|
|
Species the CSS file used for styling the HTML document.<LineBreak />
|
|
The CSS file will be ingected to the output document<LineBreak />
|
|
Default value is %ScriptRoot%\Documentation\DefaultHTMLStyle.css
|
|
</TextBlock>
|
|
</Rectangle.ToolTip>
|
|
</Rectangle>
|
|
</StackPanel>
|
|
<Grid Grid.Column='1' Grid.Row='1' Margin="0,5,5,0" >
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="5" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<TextBox Text="" Name="txtHTMLCSSFile" />
|
|
<Button Grid.Column="2" Name="browseHTMLCSSFile" Padding="5,0,5,0" Width="50" ToolTip="Browse for CSS file">...</Button>
|
|
</Grid>
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row='2' Margin="0,0,5,0">
|
|
<Label Content="Open document" />
|
|
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="This will open the document when finished" />
|
|
</StackPanel>
|
|
<CheckBox Grid.Column='1' Grid.Row='2' Name='chkHTMLOpenDocument' VerticalAlignment="Center" IsChecked="true" />
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row='3' Margin="0,5,5,0" >
|
|
<Label Content="Output File" />
|
|
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="Specify the targeted file for the documentation. One single file for all objects or one file per object." />
|
|
</StackPanel>
|
|
<ComboBox Name="cbHTMLDocumentOutputFile" Margin="0,5,0,0" MinWidth="250" Grid.Row='3' Grid.Column="1" HorizontalAlignment="Left"
|
|
DisplayMemberPath="Name" SelectedValuePath="Value" />
|
|
|
|
</Grid> |