зеркало из https://github.com/DeGsoft/maui-linux.git
14 строки
198 B
C#
14 строки
198 B
C#
|
using System;
|
||
|
|
||
|
namespace Xamarin.Forms
|
||
|
{
|
||
|
public class ToggledEventArgs : EventArgs
|
||
|
{
|
||
|
public ToggledEventArgs(bool value)
|
||
|
{
|
||
|
Value = value;
|
||
|
}
|
||
|
|
||
|
public bool Value { get; private set; }
|
||
|
}
|
||
|
}
|