mirror of
https://github.com/muskit/MercuryConverter.git
synced 2026-06-02 20:24:26 -07:00
20 lines
1.0 KiB
XML
20 lines
1.0 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
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:MercuryConverter.UI.Dialogs"
|
|
x:Class="MercuryConverter.UI.Dialogs.Welcome"
|
|
>
|
|
<StackPanel Margin="12">
|
|
<TextBlock FontSize="24" FontWeight="Light">
|
|
welcome to <Run FontWeight="SemiBold" Text="mercury"/>converter!
|
|
</TextBlock>
|
|
<TextBlock HorizontalAlignment="Left" Padding="0 6 0 0">
|
|
<InlineUIContainer>
|
|
<HyperlinkButton Content="Setup your data folder" Padding="0" NavigateUri="https://github.com/muskit/MercuryConverter/blob/main/HOWTO.md" />
|
|
</InlineUIContainer>
|
|
before proceeding.
|
|
</TextBlock>
|
|
<Button Content="Open Data Folder" Click="ClickHandler" HorizontalAlignment="Right" Margin="0 24 0 0" />
|
|
</StackPanel>
|
|
</UserControl> |