namespace EditorSelectAll { public partial class MainPage : ContentPage { int count = 0; string msg, msg1; public MainPage() { InitializeComponent(); } private void OnCounterClicked(object sender, EventArgs e) { count++; if (count == 1) CounterBtn.Text = $"Clicked {count} time"; else CounterBtn.Text = $"Clicked {count} times"; SemanticScreenReader.Announce(CounterBtn.Text); msg1 = "This is a select all test why its scroll down and hdden"; for(int j =0; j < 120; j++) { msg += " " + j + " " + msg1 + "\n"; } InputTB.Text = msg; } private void InputTB_TextChanged(object sender, TextChangedEventArgs e) { } } }