PropertyGrid.cs :  » 2.6.4-mono-.net-core » System.Windows.Forms » System » Windows » Forms » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » 2.6.4 mono .net core » System.Windows.Forms 
System.Windows.Forms » System » Windows » Forms » PropertyGrid.cs
//
// System.Windows.Forms.PropertyGrid
//
// Author:
//   stubbed out by Jaak Simm (jaaksimm@firm.ee)
//  Dennis Hayes (dennish@raytek.com)
//
// (C) Ximian, Inc., 2002
//

//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
// 
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//

using System.Drawing;
//using System.Drawing.Printing;
using System.ComponentModel;
using System.Collections;
//using System.Windows.Forms.Design;

namespace System.Windows.Forms{

  /// <summary>
  /// Provides a user interface for browsing the properties of an object.

  /// </summary>

  [MonoTODO]
  public class PropertyGrid : ContainerControl {

    #region Fields
    AttributeCollection browsableAttributes;
    Color commandsBackColor;
    Color commandsForeColor;
    bool commandsVisibleIfAvailable;
    Color helpBackColor;
    Color helpForeColor;
    bool helpVisible;
    bool largeButtons;
    Color lineColor;
    PropertySort propertySort;
    bool toolbarVisible;
    Color viewBackColor;
    Color viewForeColor;
    #endregion
    
    #region Constructors
    [MonoTODO]
    public PropertyGrid() 
    {
      browsableAttributes = new AttributeCollection( 
       new Attribute[] {BrowsableAttribute.Yes} //Attribute[] attributes
      );
      commandsBackColor=SystemColors.Control;
      commandsForeColor=SystemColors.ControlText;
      commandsVisibleIfAvailable=false;
      helpBackColor=SystemColors.Control;
      helpForeColor=SystemColors.ControlText;
      helpVisible=true;
      largeButtons=false;
      lineColor=SystemColors.ScrollBar;
      propertySort=PropertySort.Categorized;// OR PropertySort.Alphabetical;
      toolbarVisible=true;
      viewBackColor=SystemColors.Window;
      viewForeColor=SystemColors.WindowText;
    }
    #endregion
    
    #region Properties
    [MonoTODO]
    public override bool AutoScroll {
      get { throw new NotImplementedException (); }
      set { throw new NotImplementedException (); }
    }
    
    [MonoTODO]
    public override Color BackColor {
      get { throw new NotImplementedException (); }
      set { throw new NotImplementedException (); }
    }
    
    [MonoTODO]
    public override Image BackgroundImage {
      get { throw new NotImplementedException (); }
      set { throw new NotImplementedException (); }
    }
    
    public AttributeCollection BrowsableAttributes {
      get { return browsableAttributes; }
      set {
        if (value==null || value==AttributeCollection.Empty) {
          browsableAttributes=new AttributeCollection( 
            new Attribute[] {BrowsableAttribute.Yes} //Attribute[] attributes
          );
        }
        else {
          browsableAttributes=value;
        }
      }
    }
    
    [MonoTODO]
    public virtual bool CanShowCommands {
      get { throw new NotImplementedException (); }
    }
    
    public Color CommandsBackColor {
      get { return commandsBackColor; }
      set { commandsBackColor=value; }
    }
    
    public Color CommandsForeColor {
      get { return commandsForeColor; }
      set { commandsForeColor=value; }
    }
    
    [MonoTODO]
    public virtual bool CommandsVisible {
      get { throw new NotImplementedException (); }
    }
    
    public virtual bool CommandsVisibleIfAvailable {
      get { return commandsVisibleIfAvailable; }
      set { commandsVisibleIfAvailable=value; }
    }
    
    /// This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
    /// public new Control.ControlCollection Controls {get;}
    
    [MonoTODO]
    public Point ContextMenuDefaultLocation {
      get { throw new NotImplementedException (); }
    }
    
    [MonoTODO]
    protected override Size DefaultSize {
      get { throw new NotImplementedException (); }
    }
    
    [MonoTODO]
    protected virtual Type DefaultTabType {
      get { throw new NotImplementedException (); }
    }
    
    /// This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
    /// protected bool DrawFlatToolbar {get; set;}
    
    [MonoTODO]
    public override Color ForeColor {
      get { throw new NotImplementedException (); }
      set { throw new NotImplementedException (); }
    }
    
    public Color HelpBackColor {
      get { return helpBackColor; }
      set { helpBackColor=value; }
    }
    
    public Color HelpForeColor {
      get { return helpForeColor; }
      set { helpForeColor=value; }
    }
    
    public virtual bool HelpVisible {
      get { return helpVisible; }
      set { helpVisible=value; }
    }
    
    public bool LargeButtons {
      get { return largeButtons; }
      set { largeButtons=value; }
    }
    
    public Color LineColor {
      get { return lineColor; }
      set { lineColor=value; }
    }
    
    public PropertySort PropertySort {
      get { return propertySort; }
      set { propertySort=value; }
    }
    
    [MonoTODO]
    public PropertyGrid.PropertyTabCollection PropertyTabs {
      get { throw new NotImplementedException (); }
    }
    
    [MonoTODO]
    public GridItem SelectedGridItem {
      get { throw new NotImplementedException (); }
      set { throw new NotImplementedException (); }
    }
    
    [MonoTODO]
    public object SelectedObject {
      get { throw new NotImplementedException (); }
      set { throw new NotImplementedException (); }
    }
    
    [MonoTODO]
    public object[] SelectedObjects {
      get { throw new NotImplementedException (); }
      set { throw new NotImplementedException (); }
    }
    
//    [MonoTODO]
//    public PropertyTab SelectedTab {
//      get { throw new NotImplementedException (); }
//    }
    
    [MonoTODO]
    protected override bool ShowFocusCues {
      get { throw new NotImplementedException (); }
    }
    
    [MonoTODO]
    public override ISite Site {
      get { throw new NotImplementedException (); }
      set { throw new NotImplementedException (); }
    }
    
    public virtual bool ToolbarVisible {
      get { return toolbarVisible; }
      set { toolbarVisible=value; }
    }
    
    public Color ViewBackColor {
      get { return viewBackColor; }
      set { viewBackColor=value; }
    }
    
    public Color ViewForeColor {
      get { return viewForeColor; }
      set { viewForeColor=value; }
    }
    #endregion
    
    #region Methods
    [MonoTODO]
    public void CollapseAllGridItems() 
    {
      throw new NotImplementedException ();
    }
    
    //[MonoTODO]
    //protected virtual PropertyTab CreatePropertyTab(Type tabType) {
    //  throw new NotImplementedException ();
    //}
    
    [MonoTODO]
    protected override void Dispose(bool disposing) 
    {
      base.Dispose(disposing);
    }
    
    [MonoTODO]
    public void ExpandAllGridItems() 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected override void OnFontChanged(EventArgs e) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected override void OnGotFocus(EventArgs e) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected override void OnHandleCreated(EventArgs e) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected override void OnHandleDestroyed(EventArgs e) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected override void OnMouseDown(MouseEventArgs me) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected override void OnMouseMove(MouseEventArgs me) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected override void OnMouseUp(MouseEventArgs me) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected override void OnPaint(PaintEventArgs pevent) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected virtual void OnPropertyTabChanged(PropertyTabChangedEventArgs e) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected virtual void OnPropertyValueChanged(PropertyValueChangedEventArgs e) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected override void OnResize(EventArgs e) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected virtual void OnSelectedGridItemChanged(SelectedGridItemChangedEventArgs e) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected virtual void OnSelectedObjectsChanged(EventArgs e) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected override void OnSystemColorsChanged(EventArgs e) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected override void OnVisibleChanged(EventArgs e) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected override bool ProcessDialogKey(Keys keyData) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    public override void Refresh() 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    public void RefreshTabs(PropertyTabScope tabScope) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    public void ResetSelectedProperty() 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected override void ScaleCore(float dx,float dy) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    protected override void WndProc(ref Message m) 
    {
      throw new NotImplementedException ();
    }
    #endregion
    
    #region Events
    public event EventHandler PropertySortChanged;
    public event PropertyTabChangedEventHandler PropertyTabChanged;
    public event PropertyValueChangedEventHandler PropertyValueChanged;
    public event SelectedGridItemChangedEventHandler SelectedGridItemChanged;
    public event EventHandler SelectedObjectsChanged;
    #endregion
    
    /// sub-class: PropertyGrid.PropertyTabCollection
    /// <summary>
    /// Contains a collection of PropertyTab objects.
    /// </summary>
    public class PropertyTabCollection : ICollection, IEnumerable {
      #region Properties
      [MonoTODO]
      public int Count {
        get { throw new NotImplementedException (); }
      }
      
//      [MonoTODO]
//      public PropertyTab this[int index] {
//        get { throw new NotImplementedException (); }
//      }
      #endregion
      
      #region Methods
      [MonoTODO]
      public void AddTabType(Type propertyTabType) 
      {
        throw new NotImplementedException ();
      }
      
      [MonoTODO]
      public void AddTabType(Type propertyTabType,PropertyTabScope tabScope) 
      {
        throw new NotImplementedException ();
      }
      
      [MonoTODO]
      public void Clear(PropertyTabScope tabScope) 
      {
        throw new NotImplementedException ();
      }
      
      [MonoTODO]
      public IEnumerator GetEnumerator() 
      {
        throw new NotImplementedException ();
      }
      
      [MonoTODO]
      void ICollection.CopyTo(Array dest,int index) 
      {
        throw new NotImplementedException ();
      }
      
      [MonoTODO]
      public void RemoveTabType(Type propertyTabType) 
      {
        throw new NotImplementedException ();
      }
      
      [MonoTODO]
      public object SyncRoot {
        // FIXME: should return object that can be used with the C# lock keyword
        get { return this; }
      }
      
      [MonoTODO]
      public bool IsSynchronized {
        // FIXME: should return true if object is synchronized
        get { return false; }
      }
      #endregion
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.