зеркало из https://github.com/DeGsoft/maui-linux.git
34 строки
1.0 KiB
C#
34 строки
1.0 KiB
C#
using Xamarin.Forms.CustomAttributes;
|
|
using Xamarin.Forms.Internals;
|
|
|
|
namespace Xamarin.Forms.Controls.Issues
|
|
{
|
|
[Preserve(AllMembers = true)]
|
|
[Issue (IssueTracker.Bugzilla, 36649, "LineBreakMode.NoWrap is handled incorrectly on Windows Phone 8.1 RT",
|
|
PlatformAffected.WinRT)]
|
|
public class Bugzilla36649 : TestContentPage
|
|
{
|
|
protected override void Init ()
|
|
{
|
|
var label = new Label {
|
|
Style = Device.Styles.BodyStyle,
|
|
FontSize = 20,
|
|
Text =
|
|
"This test is successful if the line below does not wrap and does not have an ellipsis at the "
|
|
+ "end of the visible text."
|
|
};
|
|
var testLabel = new Label {
|
|
TextColor = Color.Red,
|
|
Style = Device.Styles.BodyStyle,
|
|
FontSize = 20,
|
|
LineBreakMode = LineBreakMode.NoWrap,
|
|
Text =
|
|
"This text should be long enough that it won't fit on the screen, and since the LineBreakMode is "
|
|
+ "set to NoWrap, there should not be an ellipsis at the end of the visible text."
|
|
};
|
|
|
|
Content = new StackLayout { Children = { label, testLabel } };
|
|
}
|
|
}
|
|
}
|