Exemple #1
0
 public static SettingValueEditedEventArgs <TValue> Get(TValue initialValue, TValue finalValue, bool modified) =>
 PooledEventArgs <SettingValueEditedEventArgs <TValue>, TValue, TValue, bool> .Get(initialValue, finalValue, modified);
 public static ValueEventArgs <T> Get(T value) =>
 PooledEventArgs <ValueEventArgs <T>, T> .Get(value);
Exemple #3
0
 internal static ValueChangedEventArgs <T> Get(T oldValue, T newValue) =>
 PooledEventArgs <ValueChangedEventArgs <T>, T, T> .Get(oldValue, newValue);
Exemple #4
0
 public static SettingValueEditingEventArgs Get(object currentValue) =>
 PooledEventArgs <SettingValueEditingEventArgs, object> .Get(currentValue);
Exemple #5
0
 public static SelectionChangedEventArgs Get(SelectionChangeFlags changeFlags) =>
 PooledEventArgs <SelectionChangedEventArgs, SelectionChangeFlags> .Get(changeFlags);
 public static SettingValueEditedEventArgs Get(object initialValue, object finalValue, bool modified) =>
 PooledEventArgs <SettingValueEditedEventArgs, object, object, bool> .Get(initialValue, finalValue, modified);
 public static SettingValueEditingEventArgs <TValue> Get(TValue currentValue) =>
 PooledEventArgs <SettingValueEditingEventArgs <TValue>, TValue> .Get(currentValue);