зеркало из https://github.com/DeGsoft/maui-linux.git
17 строки
343 B
C#
17 строки
343 B
C#
using System;
|
|
|
|
namespace Xamarin.Forms
|
|
{
|
|
public class TextChangedEventArgs : EventArgs
|
|
{
|
|
public TextChangedEventArgs(string oldTextValue, string newTextValue)
|
|
{
|
|
OldTextValue = oldTextValue;
|
|
NewTextValue = newTextValue;
|
|
}
|
|
|
|
public string NewTextValue { get; private set; }
|
|
|
|
public string OldTextValue { get; private set; }
|
|
}
|
|
} |