25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- 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);
- }
- }
- }
|