1234567891011121314151617181920212223 |
- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- namespace InABox.DynamicGrid
- {
- public class DFLabelControl : DynamicFormControl<DFLayoutLabel>
- {
- protected override FrameworkElement Create()
- {
- var label = new Label();
- label.Content = Control.Caption;
- label.HorizontalContentAlignment = HorizontalAlignment.Left;
- label.VerticalContentAlignment = VerticalAlignment.Center;
- return label;
- }
- }
- }
|