46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel;
|
||
|
using Value = System.Object;
|
||
|
|
||
|
namespace Ooui
|
||
|
{
|
||
|
public class Style : INotifyPropertyChanged
|
||
|
{
|
||
|
public event PropertyChangedEventHandler PropertyChanged;
|
||
|
|
||
|
readonly Dictionary<string, Value> properties =
|
||
|
new Dictionary<string, Value> ();
|
||
|
|
||
|
public Value BackgroundColor {
|
||
|
get => GetProperty ("background-color");
|
||
|
set => SetProperty ("background-color", value);
|
||
|
}
|
||
|
|
||
|
private Value GetProperty (string propertyName)
|
||
|
{
|
||
|
lock (properties) {
|
||
|
Value p;
|
||
|
if (!properties.TryGetValue (propertyName, out p)) {
|
||
|
p = new Value ();
|
||
|
properties[propertyName] = p;
|
||
|
}
|
||
|
return p;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void SetProperty (string propertyName, Value value)
|
||
|
{
|
||
|
lock (properties) {
|
||
|
Value old;
|
||
|
if (properties.TryGetValue (propertyName, out old)) {
|
||
|
if (EqualityComparer<Value>.Default.Equals (old, value))
|
||
|
return;
|
||
|
}
|
||
|
properties[propertyName] = value;
|
||
|
}
|
||
|
PropertyChanged?.Invoke (this, new PropertyChangedEventArgs (propertyName));
|
||
|
}
|
||
|
}
|
||
|
}
|