Inheritance: System.Windows.Forms.PropertyGrid
Exemplo n.º 1
0
        internal ConfigPage(ASFConfig config)
        {
            ASFConfig = config ?? throw new ArgumentNullException(nameof(config));

            RefreshText();

            EnhancedPropertyGrid enhancedPropertyGrid = new EnhancedPropertyGrid(config);

            Controls.Add(enhancedPropertyGrid);
        }
Exemplo n.º 2
0
		internal ConfigPage(ASFConfig config) {
			if (config == null) {
				throw new ArgumentNullException(nameof(config));
			}

			ASFConfig = config;

			RefreshText();

			EnhancedPropertyGrid enhancedPropertyGrid = new EnhancedPropertyGrid(config);
			Controls.Add(enhancedPropertyGrid);
		}
Exemplo n.º 3
0
        internal ConfigPage(ASFConfig config)
        {
            if (config == null) {
                return;
            }

            ASFConfig = config;

            RefreshText();

            EnhancedPropertyGrid enhancedPropertyGrid = new EnhancedPropertyGrid(config);
            Controls.Add(enhancedPropertyGrid);
        }
Exemplo n.º 4
0
        internal ConfigPage(ASFConfig config)
        {
            if (config == null)
            {
                return;
            }

            ASFConfig = config;

            RefreshText();

            EnhancedPropertyGrid enhancedPropertyGrid = new EnhancedPropertyGrid(config);

            Controls.Add(enhancedPropertyGrid);
        }