feat(ui): add user guide button to help overlay
Adds a "User guide" button next to "Report a bug" in the Help > Info tab, linking to USERGUIDE.md on GitHub via the same Launcher pattern used for bug reports and release pages.
This commit is contained in:
@@ -1563,9 +1563,14 @@
|
||||
Foreground="{DynamicResource TextSecondaryBrush}"/>
|
||||
</StackPanel>
|
||||
<TextBlock Text="{Binding Loc[help.info]}" TextWrapping="Wrap"/>
|
||||
<Button Content="{Binding Loc[help.bug.report]}"
|
||||
Click="OnOpenBugReportClick"
|
||||
HorizontalAlignment="Left"/>
|
||||
<StackPanel Orientation="Horizontal" Spacing="8">
|
||||
<Button Content="{Binding Loc[help.bug.report]}"
|
||||
Click="OnOpenBugReportClick"
|
||||
HorizontalAlignment="Left"/>
|
||||
<Button Content="{Binding Loc[help.user.guide]}"
|
||||
Click="OnOpenUserGuideClick"
|
||||
HorizontalAlignment="Left"/>
|
||||
</StackPanel>
|
||||
<Border BorderBrush="{DynamicResource BorderSubtleBrush}"
|
||||
BorderThickness="0,1,0,0" Margin="0,4,0,0"/>
|
||||
<StackPanel Spacing="4">
|
||||
|
||||
Reference in New Issue
Block a user