| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 | using System;using System.Collections.Generic;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Media;using InABox.Clients;using InABox.Core;namespace InABox.DynamicGrid{    public class TextBoxDecorator : Decorator    {        // properties        public override UIElement Child        {            get => base.Child;            set            {                var oldValue = base.Child;                if (oldValue != null)                {                    //var wbind = BindingOperations.GetBinding(oldValue, FrameworkElement.WidthProperty);                    //if ((wbind != null) && (wbind.Source == this))                    //    BindingOperations.ClearBinding(oldValue, FrameworkElement.WidthProperty);                    var hbind = BindingOperations.GetBinding(oldValue, HeightProperty);                    if (hbind != null && hbind.Source == this)                        BindingOperations.ClearBinding(oldValue, HeightProperty);                }                base.Child = value;                if (value != null &&                    BindingOperations.GetBinding(value, HeightProperty) == null)                    BindingOperations.SetBinding(                        value,                        HeightProperty,                        new Binding                        {                            Source = this,                            Path = new PropertyPath(ActualHeightProperty),                            Mode = BindingMode.OneWay                        });            }        }        // methods        protected override Size MeasureOverride(Size constraint)        {            var result = base.MeasureOverride(constraint);            if (double.IsInfinity(constraint.Height))                result.Height = (Child as FrameworkElement)?.MinHeight ?? 0.0;            return result;        }    }    public class NotesEditorControl : DynamicEditorControl<string[]>    {        private Color BGColor = Colors.Gainsboro;        //private TextBox Editor = null;        private Button Button;        private Grid Grid;        private TextBox History;        private TextBoxDecorator Scroll;        public override int DesiredHeight()        {            return int.MaxValue;        }        public override int DesiredWidth()        {            return int.MaxValue;        }        public override void SetColor(Color color)        {            BGColor = color;            if (!History.IsReadOnly)                History.Background = new SolidColorBrush(color);        }        public override void SetFocus()        {            Button.Focus();        }        protected override FrameworkElement CreateEditor()        {            VerticalAlignment = VerticalAlignment.Stretch;            MinHeight = 250;            Grid = new Grid();            Grid.VerticalAlignment = VerticalAlignment.Stretch;            Grid.RowDefinitions.Add(new RowDefinition { Height = new GridLength(1, GridUnitType.Star) });            Grid.ColumnDefinitions.Add(new ColumnDefinition { Width = new GridLength(1, GridUnitType.Star) });            Grid.ColumnDefinitions.Add(new ColumnDefinition { Width = new GridLength(1, GridUnitType.Auto) });            Scroll = new TextBoxDecorator            {                VerticalAlignment = VerticalAlignment.Stretch,                HorizontalAlignment = HorizontalAlignment.Stretch                //HorizontalContentAlignment = HorizontalAlignment.Stretch,                //VerticalScrollBarVisibility = ScrollBarVisibility.Visible,                //HorizontalScrollBarVisibility = ScrollBarVisibility.Disabled,                //Background = new SolidColorBrush(Colors.Yellow)            };            Scroll.SetValue(Grid.RowProperty, 0);            Scroll.SetValue(Grid.ColumnProperty, 0);            Grid.Children.Add(Scroll);            History = new TextBox            {                VerticalAlignment = VerticalAlignment.Top,                VerticalContentAlignment = VerticalAlignment.Stretch,                HorizontalAlignment = HorizontalAlignment.Stretch,                TextWrapping = TextWrapping.Wrap,                AcceptsReturn = true,                IsReadOnly = true,                VerticalScrollBarVisibility = ScrollBarVisibility.Auto            };            History.IsVisibleChanged += (o, e) =>            {                History.Focus();                History.CaretIndex = History.Text.Length;                History.ScrollToEnd();            };            History.TextChanged += (o, e) =>            {                if (History.IsReadOnly)                {                    History.Focus();                    History.CaretIndex = History.Text.Length;                    History.ScrollToEnd();                }                else                {                    CheckChanged();                }            };            Scroll.Child = History;            Button = new Button            {                VerticalAlignment = VerticalAlignment.Stretch,                VerticalContentAlignment = VerticalAlignment.Center,                HorizontalAlignment = HorizontalAlignment.Stretch,                HorizontalContentAlignment = HorizontalAlignment.Center,                Content = "Add",                Width = 50            };            Button.SetValue(Grid.RowProperty, 0);            Button.SetValue(Grid.ColumnProperty, 1);            Button.Click += Button_Click;            Button.Margin = new Thickness(5, 0, 0, 0);            Grid.Children.Add(Button);            return Grid;        }        private void Button_Click(object sender, RoutedEventArgs e)        {            var popup = new NotePopup { Caption = "Add Note", Text = "" };            if (popup.ShowDialog() == true)            {                if (string.IsNullOrEmpty(History.Text))                {                    History.AppendText(popup.Text);                }                else                {                    var note = string.Format("{0:yyyy-MM-dd HH:mm:ss} {1}: {2}", DateTime.Now, ClientFactory.UserID, popup.Text);                    History.AppendText("\n===================================\n" + note);                }                History.ScrollToEnd();                CheckChanged();            }        }        protected override string[] RetrieveValue()        {            var results = new List<string>();            if (!string.IsNullOrWhiteSpace(History.Text))                results.AddRange(History.Text.Split('\n'));            return results.ToArray();        }        protected override void UpdateValue(string[] value)        {            if (value != null)                History.Text = string.Join("\n", value);            else                History.Text = "";            var AlwaysEnabled = EditorDefinition is NotesEditor && ((NotesEditor)EditorDefinition).AlwaysEnabled;            History.IsReadOnly = !AlwaysEnabled && !string.IsNullOrWhiteSpace(History.Text);            History.Background = History.IsReadOnly ? new SolidColorBrush(Colors.Gainsboro) : new SolidColorBrush(BGColor);            Button.Visibility = History.IsReadOnly ? Visibility.Visible : Visibility.Collapsed;            History.Focus();            History.CaretIndex = History.Text.Length;            History.ScrollToEnd();        }    }}
 |