36 строки
732 B
C#
36 строки
732 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.CustomAttributes;
|
|
using Xamarin.Forms.Internals;
|
|
using Xamarin.Forms.Xaml;
|
|
|
|
namespace Xamarin.Forms.Controls.Issues
|
|
{
|
|
[Preserve(AllMembers = true)]
|
|
[Issue(IssueTracker.Github, 3979, "Removing LineBreakMode support from WindowsResourcesProvider", PlatformAffected.UWP)]
|
|
public partial class Issue3979 : TestContentPage
|
|
{
|
|
public Issue3979()
|
|
{
|
|
#if APP
|
|
InitializeComponent();
|
|
#endif
|
|
}
|
|
|
|
protected override void Init()
|
|
{
|
|
|
|
}
|
|
#if APP
|
|
private void Button_OnClicked(object sender, EventArgs e)
|
|
{
|
|
TargetSpan.Style = Device.Styles.BodyStyle;
|
|
}
|
|
#endif
|
|
}
|
|
} |