125 lines
4.9 KiB
XML
125 lines
4.9 KiB
XML
<Window x:Class="Torch.Server.Views.PluginBrowser"
|
|
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:local="clr-namespace:Markdown.Xaml;assembly=Markdown.Xaml"
|
|
xmlns:system="clr-namespace:System;assembly=mscorlib"
|
|
xmlns:views="clr-namespace:Torch.Server.Views"
|
|
mc:Ignorable="d"
|
|
Title="PluginBrowser" Height="400" Width="600"
|
|
DataContext="{Binding RelativeSource={RelativeSource Self}}">
|
|
|
|
<Window.Resources>
|
|
<Style TargetType="FlowDocument" x:Key="DocumentStyle">
|
|
<Setter Property="FontFamily"
|
|
Value="Calibri" />
|
|
<Setter Property="TextAlignment"
|
|
Value="Left" />
|
|
</Style>
|
|
|
|
<Style x:Key="H1Style"
|
|
TargetType="Paragraph">
|
|
<Setter Property="FontSize"
|
|
Value="42" />
|
|
<Setter Property="Foreground"
|
|
Value="#ff000000" />
|
|
<Setter Property="FontWeight"
|
|
Value="Light" />
|
|
</Style>
|
|
|
|
<Style x:Key="H2Style"
|
|
TargetType="Paragraph">
|
|
<Setter Property="FontSize"
|
|
Value="20" />
|
|
<Setter Property="Foreground"
|
|
Value="#ff000000" />
|
|
<Setter Property="FontWeight"
|
|
Value="Light" />
|
|
</Style>
|
|
|
|
<Style x:Key="H3Style"
|
|
TargetType="Paragraph">
|
|
<Setter Property="FontSize"
|
|
Value="20" />
|
|
<Setter Property="Foreground"
|
|
Value="#99000000" />
|
|
<Setter Property="FontWeight"
|
|
Value="Light" />
|
|
</Style>
|
|
|
|
<Style x:Key="H4Style"
|
|
TargetType="Paragraph">
|
|
<Setter Property="FontSize"
|
|
Value="14" />
|
|
<Setter Property="Foreground"
|
|
Value="#99000000" />
|
|
<Setter Property="FontWeight"
|
|
Value="Light" />
|
|
</Style>
|
|
|
|
<Style x:Key="LinkStyle"
|
|
TargetType="Hyperlink">
|
|
<Setter Property="TextDecorations"
|
|
Value="None" />
|
|
</Style>
|
|
|
|
<Style x:Key="ImageStyle"
|
|
TargetType="Image">
|
|
<Setter Property="RenderOptions.BitmapScalingMode"
|
|
Value="NearestNeighbor" />
|
|
<Style.Triggers>
|
|
<Trigger Property="Tag"
|
|
Value="imageright">
|
|
<Setter Property="Margin"
|
|
Value="20,0,0,0" />
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
|
|
<Style x:Key="SeparatorStyle"
|
|
TargetType="Line">
|
|
<Setter Property="X2"
|
|
Value="{Binding ActualWidth, RelativeSource={RelativeSource AncestorType=FlowDocumentScrollViewer}}" />
|
|
<Setter Property="Stroke"
|
|
Value="#99000000" />
|
|
<Setter Property="StrokeThickness"
|
|
Value="2" />
|
|
</Style>
|
|
<local:Markdown x:Key="Markdown"
|
|
DocumentStyle="{StaticResource DocumentStyle}"
|
|
Heading1Style="{StaticResource H1Style}"
|
|
Heading2Style="{StaticResource H2Style}"
|
|
Heading3Style="{StaticResource H3Style}"
|
|
Heading4Style="{StaticResource H4Style}"
|
|
LinkStyle="{StaticResource LinkStyle}"
|
|
ImageStyle="{StaticResource ImageStyle}"
|
|
SeparatorStyle="{StaticResource SeparatorStyle}"
|
|
AssetPathRoot="{x:Static system:Environment.CurrentDirectory}"/>
|
|
|
|
<local:TextToFlowDocumentConverter x:Key="TextToFlowDocumentConverter"
|
|
Markdown="{StaticResource Markdown}"/>
|
|
|
|
</Window.Resources>
|
|
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<ListView Name="PluginsList" Width="150" Height="Auto" Margin="3" ItemsSource="{Binding Plugins}" SelectionChanged="PluginsList_SelectionChanged">
|
|
|
|
</ListView>
|
|
<Button Name="DownloadButton" Grid.Row ="1" Content="Download" Margin="3" Height="30" Click="DownloadButton_OnClick" IsEnabled="False"/>
|
|
</Grid>
|
|
<FlowDocumentScrollViewer Grid.Column="1" Name="MarkdownFlow" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Margin="3" Document="{Binding CurrentDescription, Converter={StaticResource TextToFlowDocumentConverter}}"/>
|
|
</Grid>
|
|
</Window>
|
|
|
|
|