public override void OnDraw(Graphics2D graphics2D) { if (firstDraw) { textToAddWidget.Focus(); //textToAddWidget.Text = "Test Text"; firstDraw = false; } base.OnDraw(graphics2D); }
public override void OnDraw(Graphics2D graphics2D) { if (firstDraw) { #if !__ANDROID__ textToAddWidget.Focus(); #endif //textToAddWidget.Text = "Test Text"; firstDraw = false; } //DoCsgTest(); base.OnDraw(graphics2D); }
public override void OnDraw(Graphics2D graphics2D) { if (firstDraw) { if (!UserSettings.Instance.IsTouchScreen) { textToAddWidget.Focus(); } //textToAddWidget.Text = "Test Text"; firstDraw = false; } base.OnDraw(graphics2D); }