Skip to content

Commit cee1770

Browse files
github-actions[bot]PureWeen
authored andcommitted
[create-pull-request] automated change (#29505)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent f0575c3 commit cee1770

File tree

15 files changed

+1259
-1259
lines changed

15 files changed

+1259
-1259
lines changed

src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/SearchHandlerAppearanceTracker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ void UpdateSearchBarBackgroundColor(UITextField textField)
178178
if (_defaultBackgroundColor == null)
179179
_defaultBackgroundColor = backgroundView.BackgroundColor;
180180

181-
UIColor backgroundColor = backGroundColor.ToPlatform();
181+
UIColor backgroundColor = backGroundColor.ToPlatform();
182182
backgroundView.BackgroundColor = backgroundColor;
183183
textField.BackgroundColor = backgroundColor;
184184
}

src/Controls/src/Core/Platform/ModalNavigationManager/ModalNavigationManager.Android.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ public ModalFragment(IMauiContext mauiContext, Page modal)
270270
var statusBarColor = mainActivityWindow.StatusBarColor;
271271
#pragma warning disable CA1422
272272
dialog.Window.SetNavigationBarColor(new AColor(navigationBarColor));
273-
dialog.Window.SetStatusBarColor(new AColor(statusBarColor));
273+
dialog.Window.SetStatusBarColor(new AColor(statusBarColor));
274274
#pragma warning restore CA1422
275275
}
276276

src/Controls/tests/Core.UnitTests/ItemDisplayBindingTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void TestItemDisplayBinding()
4242
Assert.Equal(binding, testView.ItemDisplayBinding);
4343
Assert.Equal(binding, testView.picker.ItemDisplayBinding);
4444
}
45-
45+
4646

4747
}
4848
}

src/Controls/tests/TestCases.HostApp/FeatureMatrix/CollectionView/CollectionViewDynamicChanges/CollectionViewDynamicOptionsPage.xaml.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace Maui.Controls.Sample;
22

33
public partial class CollectionViewDynamicOptionsPage : ContentPage
44
{
5-
private CollectionViewViewModel _viewModel;
5+
private CollectionViewViewModel _viewModel;
66

77
public CollectionViewDynamicOptionsPage(CollectionViewViewModel viewModel)
88
{
@@ -37,7 +37,7 @@ private void OnEmptyViewChanged(object sender, CheckedChangedEventArgs e)
3737
grid.Children.Add(new Label
3838
{
3939
Text = "No Items Available(Grid View)",
40-
40+
4141
TextColor = Colors.Blue
4242
});
4343
_viewModel.EmptyView = grid;
@@ -124,7 +124,7 @@ private void OnEmptyViewTemplateChanged(object sender, CheckedChangedEventArgs e
124124
TextColor = Colors.Blue
125125
});
126126
return grid;
127-
127+
128128
});
129129
_viewModel.IsEmptyViewTemplateSelected = true;
130130
}
@@ -201,7 +201,7 @@ private void OnGroupHeaderTemplateChanged(object sender, CheckedChangedEventArgs
201201
if (GroupHeaderTemplateNone.IsChecked)
202202
{
203203
_viewModel.GroupHeaderTemplate = null;
204-
204+
205205

206206
}
207207
else if (GroupHeaderTemplateGrid.IsChecked)
@@ -233,7 +233,7 @@ private void OnGroupFooterTemplateChanged(object sender, CheckedChangedEventArgs
233233
if (GroupFooterTemplateNone.IsChecked)
234234
{
235235
_viewModel.GroupFooterTemplate = null;
236-
236+
237237
}
238238
else if (GroupFooterTemplateGrid.IsChecked)
239239
{
@@ -274,7 +274,7 @@ private void OnItemTemplateChanged(object sender, CheckedChangedEventArgs e)
274274
label.SetBinding(Label.TextProperty, new Binding("Caption"));
275275
return label;
276276
});
277-
_viewModel.IsItemTemplateSelected = true;
277+
_viewModel.IsItemTemplateSelected = true;
278278
}
279279
}
280280

@@ -298,7 +298,7 @@ private void OnItemsSourceChanged(object sender, CheckedChangedEventArgs e)
298298
_viewModel.ItemsSourceType = ItemsSourceType.ObservableCollection5T;
299299
else if (radioButton == ItemsSourceGroupedList)
300300
_viewModel.ItemsSourceType = ItemsSourceType.GroupedListT;
301-
else if (radioButton == ItemsSourceNone)
301+
else if (radioButton == ItemsSourceNone)
302302
_viewModel.ItemsSourceType = ItemsSourceType.None;
303-
}
304-
}
303+
}
304+
}

0 commit comments

Comments
 (0)