зеркало из https://github.com/DeGsoft/maui-linux.git
14 строки
496 B
C#
14 строки
496 B
C#
namespace Xamarin.Forms.Controls
|
|
{
|
|
public class Issue3076Button : Button
|
|
{
|
|
public static readonly BindableProperty HorizontalContentAlignmentProperty =
|
|
BindableProperty.Create ("HorizontalContentAlignemnt", typeof(TextAlignment), typeof(Issue3076Button), TextAlignment.Center);
|
|
|
|
public TextAlignment HorizontalContentAlignment
|
|
{
|
|
get { return (TextAlignment)GetValue (HorizontalContentAlignmentProperty); }
|
|
set { SetValue (HorizontalContentAlignmentProperty, value); }
|
|
}
|
|
}
|
|
} |