You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using AduSkin.Controls.Helper;
using AduSkin.Utility.Element;
using System.Collections.Generic;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
namespace AduSkin.Controls.Metro
{
public class AduDataGrid : DataGrid
{
///
using AduSkin.Controls.Helper;
using AduSkin.Utility.Element;
using System.Collections.Generic;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
namespace AduSkin.Controls.Metro
{
public class AduDataGrid : DataGrid
{
///
/// 所有 AduCheckBox 对象名称。
///
private IEnumerable _chkns = null;
}
}
// ExtensionMethod
internal static Color ToColor(this object value)
{
try
{
return (Color)ColorConverter.ConvertFromString(value.ToString());
}
catch (System.Exception)
{
return Color.FromRgb(255, 255, 255);
}
}
The text was updated successfully, but these errors were encountered: