Files
Terminal.Gui/UICatalog/Scenarios/Text.cs
Charlie Kindel a0522be496 tweaks
2020-06-30 07:22:20 -07:00

115 lines
2.9 KiB
C#

using System;
using System.Text;
using Terminal.Gui;
namespace UICatalog {
[ScenarioMetadata (Name: "Text Input Controls", Description: "Tests all text input controls")]
[ScenarioCategory ("Controls")]
[ScenarioCategory ("Bug Repro")]
class Text : Scenario {
public override void Setup ()
{
var s = "TAB to jump between text fields.";
var textField = new TextField (s) {
X = 1,
Y = 1,
Width = Dim.Percent (50),
//ColorScheme = Colors.Dialog
};
Win.Add (textField);
var labelMirroringTextField = new Label (textField.Text) {
X = Pos.Right (textField) + 1,
Y = Pos.Top (textField),
Width = Dim.Fill (1)
};
Win.Add (labelMirroringTextField);
textField.TextChanged += (prev) => {
labelMirroringTextField.Text = textField.Text;
};
var textView = new TextView () {
X = 1,
Y = 3,
Width = Dim.Percent (50),
Height = Dim.Percent (30),
ColorScheme = Colors.Dialog
};
textView.Text = s;
Win.Add (textView);
var labelMirroringTextView = new Label (textView.Text) {
X = Pos.Right (textView) + 1,
Y = Pos.Top (textView),
Width = Dim.Fill (1),
Height = Dim.Height (textView),
};
Win.Add (labelMirroringTextView);
textView.TextChanged += () => {
labelMirroringTextView.Text = textView.Text;
};
// BUGBUG: 531 - TAB doesn't go to next control from HexView
var hexView = new HexView (new System.IO.MemoryStream (Encoding.ASCII.GetBytes (s))) {
X = 1,
Y = Pos.Bottom (textView) + 1,
Width = Dim.Fill (1),
Height = Dim.Percent (30),
//ColorScheme = Colors.Dialog
};
Win.Add (hexView);
var dateField = new DateField (System.DateTime.Now) {
X = 1,
Y = Pos.Bottom (hexView) + 1,
Width = 20,
//ColorScheme = Colors.Dialog,
IsShortFormat = false
};
Win.Add (dateField);
var labelMirroringDateField = new Label (dateField.Text) {
X = Pos.Right (dateField) + 1,
Y = Pos.Top (dateField),
Width = Dim.Width (dateField),
Height = Dim.Height (dateField),
};
Win.Add (labelMirroringDateField);
dateField.TextChanged += (prev) => {
labelMirroringDateField.Text = dateField.Text;
};
_timeField = new TimeField (DateTime.Now.TimeOfDay) {
X = Pos.Right (labelMirroringDateField) + 5,
Y = Pos.Bottom (hexView) + 1,
Width = 20,
//ColorScheme = Colors.Dialog,
IsShortFormat = false
};
Win.Add (_timeField);
_labelMirroringTimeField = new Label (_timeField.Text) {
X = Pos.Right (_timeField) + 1,
Y = Pos.Top (_timeField),
Width = Dim.Width (_timeField),
Height = Dim.Height (_timeField),
};
Win.Add (_labelMirroringTimeField);
_timeField.TimeChanged += TimeChanged;
}
TimeField _timeField;
Label _labelMirroringTimeField;
private void TimeChanged (DateTimeEventArgs<TimeSpan> e)
{
_labelMirroringTimeField.Text = _timeField.Text;
}
}
}