BionicUtilities.Net
1.1.6
BionicCode.Utilities.Net.Framework.Wpf
Additional DetailsBreaking change: the library has been moved to a new package and namespace: "BionicCode.Utilities.Net.Framework.Wpf" (and the dependency to "BionicCode.Utilities.Net.Standard"). Please install the "BionicCode.Utilities.Net.Framework.Wpf" package from now on. Remarks: only the namespaces have changed. Class names remain the same (except the class 'BaseViewModel` has been renamed to 'ViewModel' and 'IBaseViewModel' to 'IViewModel'. The 'BaseViewModel' class and the 'IBaseViewModel' interface are still available for backward compatibility, but have been marked as deprecated). For the .NET Core version please install the new "BionicCode.Utilities.Net.Core.Wpf" package.
See the version list below for details.
dotnet add package BionicUtilities.Net --version 1.1.6
NuGet\Install-Package BionicUtilities.Net -Version 1.1.6
<PackageReference Include="BionicUtilities.Net" Version="1.1.6" />
<PackageVersion Include="BionicUtilities.Net" Version="1.1.6" />
<PackageReference Include="BionicUtilities.Net" />
paket add BionicUtilities.Net --version 1.1.6
#r "nuget: BionicUtilities.Net, 1.1.6"
#addin nuget:?package=BionicUtilities.Net&version=1.1.6
#tool nuget:?package=BionicUtilities.Net&version=1.1.6
BionicUtilities.Net
Reusable utility and class library for WPF.
NuGet package
Class Reference
Contains
BaseViewModel
AsyncRelayCommand<T>
- Extension Methods for WPF e.g.
TryFindVisualParentElement<TParent> : bool
TryFindVisualParentElementByName : bool
TryFindVisualChildElement<TChild> : bool
TryFindVisualChildElementByName : bool
FindVisualChildElements<TChildren> : IEnumerable<TChildren>
ICollection.AddRange<T>
- EventArgs
- ValueConverters
BoolToStringConverter
BooleanMultiValueConverter
FilePathTruncateConverter
InvertValueConverter
- Collections
ObservablePropertyChangedCollection<T>
- MarkupExtensions
PrimitiveTypeExtension
Profiler
AppSettingsConnector
- A defaul API to the AppSettings that provides strongly typed reading and writing (e.g.boo
,int
,double
,string
) of key-value pair values
BaseViewModel
implements INotifyPropertyChanged
and INotifyDataErrorInfo
Example with validation
private string name;
public string Name
{
get => this.name;
set
{
if (TrySetValue(
value,
(stringValue) =>
{
var messages = new List<string>() {"Name must start with an underscore"};
return (stringValue.StartsWith("_"), messages);
},
ref this.name))
{
DoSomething(this.name);
}
}
}
Example without validation
private string name;
public string Name
{
get => this.name;
set
{
if (TrySetValue(value, ref this.name))
{
DoSomething(this.name);
}
}
}
AsyncRelayComand<T>
Reusable generic command class that encapsulates ICommand
and allows asynchronous execution.
When used with a Binding
the command will execute asynchronously when an awaitable execute handler is assigned to the command.
Example
// ICommand property
public IAsyncRelayCommand<string> StringAsyncCommand => new AsyncRelayCommand<string>(ProcessStringAsync);
// Execute asynchronously
await StringAsyncCommand.ExecuteAsync("String value");
// Execute synchronously
StringAsyncCommand.Execute("String value");
Profiler
Static helper methods to measure performance e.g. the execution time of a code portion.
Example
// Specify a custom output
Profiler.LogPrinter = (timeSpan) => PrintToFile(timeSpan);
// Measure the average execution time of a specified number of iterations.
TimeSpan elapsedTime = Profiler.LogAverageTime(() => ReadFromDatabase(), 1000);
// Measure the execution times of a specified number of iterations.
List<TimeSpan> elapsedTime = Profiler.LogTimes(() => ReadFromDatabase(), 1000);
// Measure the execution time.
TimeSpan elapsedTime = Profiler.LogTime(() => ReadFromDatabase());
ValueChangedEventArgs<T>
Generic EventArgs
implementation that provides value change information like OldValue
and NewValue
.
Example
// Specify a named ValueTuple as event argument
event EventHandler<ValueChangedEventArgs<(bool HasError, string Message)>> Completed;
protected virtual void RaiseCompleted((bool HasError, string Message) oldValue, (bool HasError, string Message) newValue)
{
this.Completed?.Invoke(this, new ValueChangedEventArgs<(bool HasError, string Message)>(oldValue, newValue));
}
private void OnCompleted(object sender, ValueChangedEventArgs<(bool HasError, string Message)> e)
{
(bool HasError, string Message) newValue = e.NewValue;
if (newValue.HasError)
{
this.TaskCompletionSource.TrySetException(new InvalidOperationException(newValue.Message));
}
this.TaskCompletionSource.TrySetResult(true);
}
AppSettingsConnector
A static default API to the AppSettings that provides strongly typed reading and writing (e.g. boo
, int
, double
, string
) of key-value pair values.
Example
// Write the Most Recently Used file count to the AppSettings file
AppSettingsConnector.WriteInt("mruCount", 10);
// If key exists read the Most Recently Used file count from the AppSettings file
if (TryReadInt("mruCount", out int mruCount))
{
this.MruCount = mruCount;
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
This package has no dependencies.
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.4.1 | 1,436 | 12/4/2019 | |
1.2.1 | 1,249 | 10/18/2019 | |
1.2.0 | 1,217 | 10/13/2019 | |
1.1.13 | 1,224 | 10/12/2019 | |
1.1.12 | 1,250 | 10/3/2019 | |
1.1.11 | 1,286 | 10/3/2019 | |
1.1.10 | 1,219 | 10/3/2019 | |
1.1.9 | 1,257 | 10/3/2019 | |
1.1.8 | 1,254 | 10/3/2019 | |
1.1.7 | 1,235 | 10/3/2019 | |
1.1.6 | 1,217 | 10/3/2019 | |
1.1.5 | 1,280 | 10/1/2019 | |
1.1.4 | 1,266 | 10/1/2019 | |
1.1.0 | 1,243 | 9/29/2019 |
Release