Skip to content

Instantly share code, notes, and snippets.

View rotorgames's full-sized avatar

Kirill rotorgames

View GitHub Profile
@KirillAshikhmin
KirillAshikhmin / SmartObservableCollection.cs
Created October 21, 2020 21:07
Extended ObservableCollectionwith range actions and corrent notify calls. Use *WithNotify methods
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using JetBrains.Annotations;
@davidtavarez
davidtavarez / LineEntry.cs
Last active November 27, 2025 14:48
Xamarin.Forms Entry just with bottom border.
using Xamarin.Forms;
namespace YOUTNAMESPACE
{
public class LineEntry : Entry
{
public static readonly BindableProperty BorderColorProperty =
BindableProperty.Create<LineEntry, Color> (p => p.BorderColor, Color.Black);
public Color BorderColor {