-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettingsControlDemo.xaml
22 lines (21 loc) · 1.45 KB
/
SettingsControlDemo.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<UserControl x:Class="User.PluginProgressBarLeaderboard.SettingsControlDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:User.PluginProgressBarLeaderboard"
xmlns:styles="clr-namespace:SimHub.Plugins.Styles;assembly=SimHub.Plugins" mc:Ignorable="d"
xmlns:ui="clr-namespace:SimHub.Plugins.UI;assembly=SimHub.Plugins"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<styles:SHSection Title="MY PLUGIN OPTIONS">
<StackPanel>
<styles:SHButtonPrimary HorizontalAlignment="Left">Primary button</styles:SHButtonPrimary>
<styles:SHButtonSecondary HorizontalAlignment="Left">Secondary button</styles:SHButtonSecondary>
<styles:SHLinkButton HorizontalAlignment="Left">Link button</styles:SHLinkButton>
<styles:SHLinkButtonSmall HorizontalAlignment="Left">Link button small</styles:SHLinkButtonSmall>
<ui:ControlsEditor FriendlyName="Increment Speed Warning" ActionName="ProgressBarLeaderboard.IncrementSpeedWarning"></ui:ControlsEditor>
</StackPanel>
</styles:SHSection>
</Grid>
</UserControl>