Skip to content

Commit 8b94241

Browse files
committed
Welcome page updated to link to UI controls and Chart controls
1 parent 41dd7e9 commit 8b94241

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

OpenSilver.Samples.TelerikUI/OpenSilver.Samples.TelerikUI/Samples/Welcome.xaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,10 @@
4343
</Hyperlink>
4444
</Span>
4545
</TextBlock>
46-
47-
<Button Content="Continue to the demos" FontSize="16" FontWeight="Bold" Background="#FF2299A1" Padding="10,6" Foreground="White" Style="{StaticResource FlatButtonStyle}" HorizontalAlignment="Left" Margin="25,30,0,0" Click="ButtonToContinue_Click"/>
48-
46+
<StackPanel Orientation="Horizontal">
47+
<Button Content="Continue to UI Controls" FontSize="16" FontWeight="Bold" Background="#FF2299A1" Padding="10,6" Foreground="White" Style="{StaticResource FlatButtonStyle}" HorizontalAlignment="Left" Margin="25,30,0,0" Click="ButtonContinueUIControls_Click"/>
48+
<Button Content="Continue to Chart Controls" FontSize="16" FontWeight="Bold" Background="#FF2299A1" Padding="10,6" Foreground="White" Style="{StaticResource FlatButtonStyle}" HorizontalAlignment="Left" Margin="25,30,0,0" Click="ButtonContinueChartsControls_Click"/>
49+
</StackPanel>
4950
</StackPanel>
5051
</Border>
5152
</UserControl>

OpenSilver.Samples.TelerikUI/OpenSilver.Samples.TelerikUI/Samples/Welcome.xaml.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,13 @@ public Welcome()
1919
this.InitializeComponent();
2020
}
2121

22-
private void ButtonToContinue_Click(object sender, RoutedEventArgs e)
22+
private void ButtonContinueUIControls_Click(object sender, RoutedEventArgs e)
2323
{
2424
MainPage.Current.NavigateToPage("/Controls");
2525
}
26+
private void ButtonContinueChartsControls_Click(object sender, RoutedEventArgs e)
27+
{
28+
MainPage.Current.NavigateToPage("/ChartControls");
29+
}
2630
}
2731
}

0 commit comments

Comments
 (0)