Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit f783f85

Browse files
Automated dotnet-format update (#13172)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 54fee8f commit f783f85

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue11224.xaml.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ public Issue11224()
3737
ResultLabel.Text = "The test has failed";
3838
};
3939

40-
carousel.PropertyChanged += (sender, args) => {
40+
carousel.PropertyChanged += (sender, args) =>
41+
{
4142
if (args.PropertyName == CarouselView.IsVisibleProperty.PropertyName)
4243
{
4344
if (carousel.IsVisible && carousel.Position == 3)

Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue11853.xaml.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Collections.ObjectModel;
4+
using System.ComponentModel;
5+
using System.Linq;
46
using System.Text;
7+
using System.Threading.Tasks;
8+
using System.Windows.Input;
59
using Xamarin.Forms.CustomAttributes;
610
using Xamarin.Forms.Internals;
7-
using System.Threading.Tasks;
811
using Xamarin.Forms.Xaml;
9-
using System.ComponentModel;
10-
using System.Linq;
11-
using System.Windows.Input;
1212

1313
#if UITEST
1414
using Xamarin.UITest;

Xamarin.Forms.Core.UnitTests/GridTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public void StarRowsDoNotOverlapWithStackLayoutOnTop()
127127
[Test]
128128
public void StarRowsDoNotOverlapWithStackLayoutOnBottom()
129129
{
130-
SetupStarRowOverlapTest(rowAIsOnTop: true, out VisualElement rowAControl,
130+
SetupStarRowOverlapTest(rowAIsOnTop: true, out VisualElement rowAControl,
131131
out VisualElement rowBControl, out Label lastLabel);
132132

133133
var topOfRowB = rowBControl.Y;
@@ -174,8 +174,8 @@ public void StarColumnsDoNotOverlapWithStackLayoutAtEnd()
174174
"A is before B, so the end of A should be the start of B");
175175
}
176176

177-
void SetupStarRowOverlapTest(bool rowAIsOnTop, out VisualElement rowAControl,
178-
out VisualElement rowBControl, out Label lastLabel)
177+
void SetupStarRowOverlapTest(bool rowAIsOnTop, out VisualElement rowAControl,
178+
out VisualElement rowBControl, out Label lastLabel)
179179
{
180180
var grid = new Grid
181181
{
@@ -592,7 +592,7 @@ public void ContractionAppliedEquallyOnMultiStarRows()
592592
}
593593

594594
[Test]
595-
public void Issue13127()
595+
public void Issue13127()
596596
{
597597
var scrollView = new ScrollView() { IsPlatformEnabled = true };
598598
var outerGrid = new Grid() { RowSpacing = 0, IsPlatformEnabled = true };

0 commit comments

Comments
 (0)