diff --git a/components/Primitives/samples/WrapLayoutSample.xaml b/components/Primitives/samples/WrapLayoutSample.xaml index 31623299..d89a2682 100644 --- a/components/Primitives/samples/WrapLayoutSample.xaml +++ b/components/Primitives/samples/WrapLayoutSample.xaml @@ -1,4 +1,4 @@ - + - - + - + + Text="{x:Bind Index}" /> - - - - - - - + + + + + diff --git a/components/Primitives/samples/WrapLayoutSample.xaml.cs b/components/Primitives/samples/WrapLayoutSample.xaml.cs index 6b8c4cd6..15f8ab95 100644 --- a/components/Primitives/samples/WrapLayoutSample.xaml.cs +++ b/components/Primitives/samples/WrapLayoutSample.xaml.cs @@ -23,7 +23,13 @@ public WrapLayoutSample() random = new Random(DateTime.Now.Millisecond); for (int i = 0; i < random.Next(1000, 5000); i++) { - var item = new ColorItem { Index = i, Width = random.Next(50, 250), Height = random.Next(50, 250), Color = Color.FromArgb(255, (byte)random.Next(0, 255), (byte)random.Next(0, 255), (byte)random.Next(0, 255)) }; + var item = new ColorItem + { + Index = i, + Width = random.Next(50, 250), + Height = random.Next(50, 250), + Color = Color.FromArgb(255, (byte)random.Next(0, 255), (byte)random.Next(0, 255), (byte)random.Next(0, 255)) + }; ColorsCollection.Add(item); } }