Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- using System;
- using System.Windows.Controls;
-
- namespace BPA.UIControl.DataAnnotations
- {
- /// <summary>
- /// DataGrid 列宽
- /// </summary>
- [AttributeUsage(AttributeTargets.Property)]
- public class ColumnWidthAttribute : Attribute
- {
- /// <summary>
- /// 列宽
- /// </summary>
- public DataGridLength Width { get; }
-
- /// <summary>
- /// DataGrid 列宽
- /// </summary>
- /// <param name="width">列宽</param>
- public ColumnWidthAttribute(string width)
- {
- var converter = new DataGridLengthConverter();
- Width = (DataGridLength)converter.ConvertFromString(width);
- }
- }
- }
|