mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2025-12-17 06:50:29 +00:00
18 lines
410 B
C#
18 lines
410 B
C#
using System.Windows.Forms;
|
|
|
|
namespace ConfigGenerator {
|
|
internal sealed class EnhancedPropertyGrid : PropertyGrid {
|
|
internal EnhancedPropertyGrid(ASFConfig config) : base() {
|
|
if (config == null) {
|
|
return;
|
|
}
|
|
|
|
SelectedObject = config;
|
|
Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top;
|
|
Dock = DockStyle.Fill;
|
|
HelpVisible = false;
|
|
ToolbarVisible = false;
|
|
}
|
|
}
|
|
}
|