File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ Disabling the `IsActive` property of SfShimmer displays the content without any
57
57
{% tabs %}
58
58
{% highlight xaml %}
59
59
60
- <Syncfusion: SfShimmer x: Name ="shimmer" Width="400 " WaveDuration="3000">
60
+ <Syncfusion: SfShimmer x: Name ="shimmer" Width="500 " WaveDuration="3000">
61
61
< Syncfusion:SfShimmer.Content >
62
62
<StackPanel Orientation =" Horizontal " >
63
63
<Image Source =" Assets/Icon.png " Width =" 130 " Height =" 130 " />
@@ -76,14 +76,14 @@ Disabling the `IsActive` property of SfShimmer displays the content without any
76
76
77
77
SfShimmer shimmer = new SfShimmer();
78
78
shimmer.Name = "shimmer";
79
- shimmer.Width = 400 ;
79
+ shimmer.Width = 500 ;
80
80
shimmer.WaveDuration = 3000;
81
81
82
82
StackPanel stackPanel = new StackPanel();
83
83
stackPanel.Orientation = Orientation.Horizontal;
84
84
85
85
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"));
87
87
image.Width = 130;
88
88
image.Height = 130;
89
89
You can’t perform that action at this time.
0 commit comments