Skip to content

Commit

Permalink
Update About Window
Browse files Browse the repository at this point in the history
  • Loading branch information
BobLd committed Jan 4, 2022
1 parent 487e4ce commit 2ff86d1
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions Panoptes/Views/Windows/AboutWindow.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,23 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignWidth="600" d:DesignHeight="300"
Width="600" Height="300"
d:DesignWidth="600" d:DesignHeight="230"
Width="600" Height="230"
CanResize="False"
Title="About"
WindowStartupLocation="CenterScreen">

<Border BorderThickness="1" BorderBrush="{StaticResource ThemeBorderHighBrush}">
<Grid ColumnDefinitions="220,Auto">
<DrawingPresenter Grid.Column="0" Drawing="{StaticResource Logo}" Margin="10" VerticalAlignment="Center"/>
<Grid Grid.Column="1" RowDefinitions="Auto,Auto">
<Grid Grid.Column="1" VerticalAlignment="Center" RowDefinitions="Auto,Auto,5,Auto,Auto, Auto">
<TextBlock Grid.Row="0" Text="Panoptes - LEAN Algorithm Monitor"/>
<TextBlock Grid.Row="1" TextWrapping="WrapWithOverflow" MaxWidth="380" FontSize="10"
Text="Panoptes is an open-source Desktop tool for Windows, Linux and MacOS to browse QuantConnect Lean engine's backtest and monitor live performances. It is updated and ported from https://github.com/mirthestam/lean-monitor."/>
<TextBlock Grid.Row="1" TextWrapping="WrapWithOverflow" MaxWidth="380" FontSize="11"
Text="Panoptes is an open-source Desktop tool for Windows, Linux and MacOS to browse QuantConnect Lean engine's backtest and monitor live performances. It is updated and ported from mirthestam's lean-monitor project."/>
<TextBlock Grid.Row="2"/>
<TextBlock Grid.Row="3" Text="Orinal project - https://github.com/mirthestam/lean-monitor"/>
<TextBlock Grid.Row="4" Text="https://github.com/BobLd/lean-monitor-2"/>
<TextBlock Grid.Row="5" Text="https://www.quantconnect.com/"/>
</Grid>
</Grid>
</Border>
Expand Down

0 comments on commit 2ff86d1

Please sign in to comment.