Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delete all the TabIndex, TabStop, Focusable things! #1777

Merged
merged 3 commits into from
Jul 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,6 @@
<Compile Update="GalleryPages\RadioButtonGalleries\RadioButtonGroupGallery.xaml.cs">
<DependentUpon>RadioButtonGroupGallery.xaml</DependentUpon>
</Compile>
<Compile Update="TabIndexTest\DaysOfWeekView.xaml.cs">
<DependentUpon>DaysOfWeekView.xaml</DependentUpon>
</Compile>
<Compile Update="GalleryPages\IndicatorViewGalleries\IndicatorGalleries.cs">
<SubType></SubType>
</Compile>
Expand All @@ -106,15 +103,6 @@
<EmbeddedResource Update="GalleryPages\RadioButtonGalleries\TemplateFromStyle.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
<EmbeddedResource Update="TabIndexTest\DayView.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
<EmbeddedResource Update="TabIndexTest\TabIndex.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
<EmbeddedResource Update="TabIndexTest\DaysOfWeekView.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,6 @@
<Compile Update="GalleryPages\RadioButtonGalleries\RadioButtonGroupGallery.xaml.cs">
<DependentUpon>RadioButtonGroupGallery.xaml</DependentUpon>
</Compile>
<Compile Update="TabIndexTest\DaysOfWeekView.xaml.cs">
<DependentUpon>DaysOfWeekView.xaml</DependentUpon>
</Compile>
<Compile Update="GalleryPages\IndicatorViewGalleries\IndicatorGalleries.cs">
<SubType></SubType>
</Compile>
Expand All @@ -106,15 +103,6 @@
<EmbeddedResource Update="GalleryPages\RadioButtonGalleries\TemplateFromStyle.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
<EmbeddedResource Update="TabIndexTest\DayView.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
<EmbeddedResource Update="TabIndexTest\TabIndex.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
<EmbeddedResource Update="TabIndexTest\DaysOfWeekView.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 0 additions & 4 deletions src/Compatibility/ControlGallery/src/Core/CoreGallery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -300,11 +300,9 @@ public override string ToString()

List<GalleryPageFactory> _pages = new List<GalleryPageFactory> {
new GalleryPageFactory(() => new GalleryPages.LayoutGalleries.LayoutGallery(), ".NET MAUI Layouts"),
new GalleryPageFactory(() => new TabIndexTest.TabIndex(), "Accessibility TabIndex (2)"),
new GalleryPageFactory(() => new PlatformTestsConsole(), "Platform Automated Tests"),
new GalleryPageFactory(() => new EmbeddedFonts(), "Embedded Fonts"),
new GalleryPageFactory(() => new MemoryLeakGallery(), "Memory Leak"),
new GalleryPageFactory(() => new Issues.A11yTabIndex(), "Accessibility TabIndex"),
new GalleryPageFactory(() => new RadioButtonGalleries(), "RadioButton Gallery"),
new GalleryPageFactory(() => new RadioButtonCoreGalleryPage(), "RadioButton Core Gallery"),
new GalleryPageFactory(() => new FontImageSourceGallery(), "Font ImageSource"),
Expand Down Expand Up @@ -587,7 +585,6 @@ public CoreRootPage(Page rootPage, NavigationBehavior navigationBehavior = Navig
{
Text = "Go to Test Cases",
AutomationId = "GoToTestButton",
TabIndex = -2,
Command = new Command(async () =>
{
if (!string.IsNullOrEmpty(searchBar.Text))
Expand Down Expand Up @@ -616,7 +613,6 @@ public CoreRootPage(Page rootPage, NavigationBehavior navigationBehavior = Navig
searchBar,
new Button {
Text = "Click to Force GC",
TabIndex = -2,
Command = new Command(() => {
GC.Collect ();
GC.WaitForPendingFinalizers ();
Expand Down
110 changes: 0 additions & 110 deletions src/Compatibility/ControlGallery/src/Core/TabIndexTest/DayView.xaml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading