Skip to content
Open
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
1,227 changes: 1,227 additions & 0 deletions src/OpenSilver.ControlsKit.Controls/ExtendedCheckBox.cs

Large diffs are not rendered by default.

744 changes: 744 additions & 0 deletions src/OpenSilver.ControlsKit.Controls/ExtendedSlider.cs

Large diffs are not rendered by default.

540 changes: 540 additions & 0 deletions src/TestApp/TestApp/Pages/TestExtendedCheckBox.xaml

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions src/TestApp/TestApp/Pages/TestExtendedCheckBox.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Navigation;

namespace TestApp.Pages
{
public partial class TestExtendedCheckBox : Page
{
public TestExtendedCheckBox()
{
this.InitializeComponent();
}

// Executes when the user navigates to this page.
protected override void OnNavigatedTo(NavigationEventArgs e)
{
}
}
}
617 changes: 617 additions & 0 deletions src/TestApp/TestApp/Pages/TestExtendedSlider.xaml

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions src/TestApp/TestApp/Pages/TestExtendedSlider.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Navigation;

namespace TestApp.Pages
{
public partial class TestExtendedSlider : Page
{
public TestExtendedSlider()
{
this.InitializeComponent();
}

// Executes when the user navigates to this page.
protected override void OnNavigatedTo(NavigationEventArgs e)
{
}
}
}
2 changes: 2 additions & 0 deletions src/TestApp/TestApp/Registry/TestRegistry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ static TestRegistry()
new TreeItem("FlexPanel", "FlexPanel"),
new TreeItem("ExtendedButton", "TestExtendedButtonControl"),
new TreeItem("ExtendedSwitch", "TestExtendedSwitch"),
new TreeItem("ExtendedSlider", "TestExtendedSlider"),
new TreeItem("ExtendedCheckBox", "TestExtendedCheckBox"),
};
}
}
Expand Down
8 changes: 8 additions & 0 deletions src/TestApp/TestApp/TestApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@
<Page Include="Pages\TestExtendedButtonControl.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Pages\TestExtendedCheckBox.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Pages\TestExtendedSlider.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Pages\TestExtendedSwitch.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
Expand All @@ -48,6 +54,8 @@
<Compile Include="Pages\FastCheckBox.xaml.cs" />
<Compile Include="Pages\AdaptiveColumnsPanel.xaml.cs" />
<Compile Include="Pages\TestExtendedButtonControl.xaml.cs" />
<Compile Include="Pages\TestExtendedCheckBox.xaml.cs" />
<Compile Include="Pages\TestExtendedSlider.xaml.cs" />
<Compile Include="Pages\TestExtendedSwitch.xaml.cs" />
<Compile Include="Pages\TestStaggeredPanel.xaml.cs" />
<Compile Include="Registry\TestRegistry.cs" />
Expand Down