Skip to content
View papinko's full-sized avatar

Block or report papinko

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. EditableProperty.cs EditableProperty.cs
    1
    public sealed class EditableProperty<T> : EditablePropertyBase<T> where T : IComparable
    2
        {
    3
            protected override Dictionary<Func<bool>, T> ValidationRules { get; } = new Dictionary<Func<bool>, T>();
    4
    
                  
    5
            public EditableProperty() 
  2. ObservableObject.cs ObservableObject.cs
    1
    using System.Collections.Generic;
    2
    using System.ComponentModel;
    3
    using System.Runtime.CompilerServices;
    4
    
                  
    5
    public abstract class ObservableObject : INotifyPropertyChanged
  3. The benefit of using relay command i... The benefit of using relay command is that you can bind commands directly to the ViewModels.
    1
    using System;
    2
    using System.Windows.Input;
    3
    
                  
    4
    public class RelayCommand : ICommand
    5
    {
  4. GetCurrentCursorPosition.cs GetCurrentCursorPosition.cs
    1
    [DllImport("user32.dll")]
    2
            [return: MarshalAs(UnmanagedType.Bool)]
    3
            static extern bool GetCursorPos(ref Win32Point pt);
    4
    
                  
    5
    [StructLayout(LayoutKind.Sequential)]