using DevExpress.XtraLayout;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.WinFormUI
{
///
/// layoutControl拓展类
///
public static class LayoutControlExtensions
{
///
/// 设置
///
///
public static void SetupLayoutControl(this LayoutControl layout)
{
layout.AllowCustomization = false;
layout.OptionsView.UseParentAutoScaleFactor = true;
}
}
}