Pinned Loading
-
EditableProperty.cs
EditableProperty.cs 1public sealed class EditableProperty<T> : EditablePropertyBase<T> where T : IComparable
2{
3protected override Dictionary<Func<bool>, T> ValidationRules { get; } = new Dictionary<Func<bool>, T>();
45public EditableProperty()
-
ObservableObject.cs
ObservableObject.cs 1using System.Collections.Generic;
2using System.ComponentModel;
3using System.Runtime.CompilerServices;
45public abstract class ObservableObject : INotifyPropertyChanged
-
The benefit of using relay command i...
The benefit of using relay command is that you can bind commands directly to the ViewModels. 1using System;
2using System.Windows.Input;
34public class RelayCommand : ICommand
5{
-
GetCurrentCursorPosition.cs
GetCurrentCursorPosition.cs 1[DllImport("user32.dll")]
2[return: MarshalAs(UnmanagedType.Bool)]
3static extern bool GetCursorPos(ref Win32Point pt);
45[StructLayout(LayoutKind.Sequential)]
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.