TimsWpfControlsExtended 1.0.0
dotnet add package TimsWpfControlsExtended --version 1.0.0
NuGet\Install-Package TimsWpfControlsExtended -Version 1.0.0
<PackageReference Include="TimsWpfControlsExtended" Version="1.0.0" />
<PackageVersion Include="TimsWpfControlsExtended" Version="1.0.0" />
<PackageReference Include="TimsWpfControlsExtended" />
paket add TimsWpfControlsExtended --version 1.0.0
#r "nuget: TimsWpfControlsExtended, 1.0.0"
#:package TimsWpfControlsExtended@1.0.0
#addin nuget:?package=TimsWpfControlsExtended&version=1.0.0
#tool nuget:?package=TimsWpfControlsExtended&version=1.0.0
TimsWpfControls
Some missing WPF Controls that integrates with MahApps.Metro
ATTENTION This libary may not be production ready
MahApps-Integration
Whenever a control is implemented in MahApps it will be removed here. Please Stay tuned if you use this library.
Disclaimer
This libary is provided without any warrenty. It will change to whatever I need, so there might be some breaking changes when you update.
BaseClass
The BaseClass implements INotifyPropertyChanged, INotifyPropertyChanging, INotifyDataErrorInfo and can be used to autmatically set and validate any property.
This class will be deleted once the WindowsCommunityToolkit-MVVM package is available and provides the same functionallity.
Converters
EnumToBool Converter
This converter can be used to bind an enum to a group of RadioButtons
Consider the following enum in your Model:
public enum Gender
{
Female,
Male,
Diverse
}
In your XAML define these namespaces:
xmlns:timsConverter="clr-namespace:TimsWpfControls.Converter;assembly=TimsWpfControls"
xmlns:model="MyApp.MyModel"
And here is your group of RadioButtons
<StackPanel>
<RadioButton Content="Female"
GroupName="RadioButtonsGender"
IsChecked="{Binding Gender, Converter={timsConverter:EnumToBoolConverter}, ConverterParameter={x:Static model:Gender.Female}}" />
<RadioButton Content="Male"
GroupName="RadioButtonsGender"
IsChecked="{Binding Gender, Converter={timsConverter:EnumToBoolConverter}, ConverterParameter={x:Static model:Gender.Male}}" />
<RadioButton Content="Diverse"
GroupName="RadioButtonsGender"
IsChecked="{Binding Gender, Converter={timsConverter:EnumToBoolConverter}, ConverterParameter={x:Static model:Gender.Diverse}}" />
</StackPanel>
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0-windows7.0 is compatible. net7.0-windows was computed. net8.0-windows was computed. net8.0-windows7.0 is compatible. net9.0-windows was computed. net10.0-windows was computed. |
| .NET Framework | net48 is compatible. net481 was computed. |
-
.NETFramework 4.8
- IndexRange (>= 1.0.3)
- MahApps.Metro (>= 2.4.10)
- MaterialDesignThemes (>= 5.1.0)
- Microsoft.CodeAnalysis.CSharp (>= 4.12.0)
- Newtonsoft.Json (>= 13.0.3)
- Ookii.Dialogs.Wpf (>= 5.0.1)
-
net6.0-windows7.0
- IndexRange (>= 1.0.3)
- MahApps.Metro (>= 2.4.10)
- MaterialDesignThemes (>= 5.1.0)
- Microsoft.CodeAnalysis.CSharp (>= 4.12.0)
- Newtonsoft.Json (>= 13.0.3)
- Ookii.Dialogs.Wpf (>= 5.0.1)
-
net8.0-windows7.0
- IndexRange (>= 1.0.3)
- MahApps.Metro (>= 2.4.10)
- MaterialDesignThemes (>= 5.1.0)
- Microsoft.CodeAnalysis.CSharp (>= 4.12.0)
- Newtonsoft.Json (>= 13.0.3)
- Ookii.Dialogs.Wpf (>= 5.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 211 | 12/16/2024 |
Upgrade