/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/settings-ui/Settings.UI.Library/Helpers/Observable.cs
29 строк
937 B
Ani
[AdvancedPaste]Additional actions - Image to text, Paste as file (txt, png, html) (#35167)
18 окт 2024, 16:34
Не верифицирован
18 окт 2024, 16:34
dd5cd2a
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.ComponentModel; using System.Runtime.CompilerServices; namespace Microsoft.PowerToys.Settings.UI.Library.Helpers { public class Observable : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; protected bool Set<T>(ref T storage, T value, [CallerMemberName] string propertyName = null) { if (Equals(storage, value)) { return false; } storage = value; OnPropertyChanged(propertyName); return true; } protected void OnPropertyChanged([CallerMemberName] string propertyName = null) => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } }