Skip to content

Commit 9035bf4

Browse files
WINUI-843320-Prepare-the-GettingStarted-ContentLoading-content-Loading-UG-doument-content-for-SfShimmer-control-in-WinUI
1 parent e47a2b5 commit 9035bf4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

winui/Shimmer/Getting-Started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Disabling the `IsActive` property of SfShimmer displays the content without any
5757
{% tabs %}
5858
{% highlight xaml %}
5959

60-
<Syncfusion:SfShimmer x:Name="shimmer" Width="400" WaveDuration="3000">
60+
<Syncfusion:SfShimmer x:Name="shimmer" Width="500" WaveDuration="3000">
6161
<Syncfusion:SfShimmer.Content>
6262
<StackPanel Orientation="Horizontal">
6363
<Image Source="Assets/Icon.png" Width="130" Height="130"/>
@@ -76,14 +76,14 @@ Disabling the `IsActive` property of SfShimmer displays the content without any
7676

7777
SfShimmer shimmer = new SfShimmer();
7878
shimmer.Name = "shimmer";
79-
shimmer.Width = 400;
79+
shimmer.Width = 500;
8080
shimmer.WaveDuration = 3000;
8181

8282
StackPanel stackPanel = new StackPanel();
8383
stackPanel.Orientation = Orientation.Horizontal;
8484

8585
Image image = new Image();
86-
image.Source = new BitmapImage(new Uri("Assets/Icon.png", UriKind.Relative));
86+
image.Source = new BitmapImage(new Uri("Assets/Icon.png"));
8787
image.Width = 130;
8888
image.Height = 130;
8989

0 commit comments

Comments
 (0)