• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# SmartPropertyGrid.PropertyEnumerator类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中VisualHint.SmartPropertyGrid.PropertyEnumerator的典型用法代码示例。如果您正苦于以下问题:C# PropertyEnumerator类的具体用法?C# PropertyEnumerator怎么用?C# PropertyEnumerator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



PropertyEnumerator类属于VisualHint.SmartPropertyGrid命名空间,在下文中一共展示了PropertyEnumerator类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: ShowControl

        public override Control ShowControl(Rectangle valueRect, PropertyEnumerator propEnum)
        {
//            if (propEnum.Property.Value.IsReadOnly(propEnum))
  //              return null;

            PropInPlaceUITypeEditor inPlaceCtrl;

            if (mInPlaceCtrl == null)
            {
                inPlaceCtrl = new PropInPlaceUITypeEditor(_editor, true);
                inPlaceCtrl.Visible = false;
                inPlaceCtrl.Parent = mParentWnd;
                mInPlaceCtrl = inPlaceCtrl;
            }
            else
                inPlaceCtrl = (PropInPlaceUITypeEditor)mInPlaceCtrl;

            NotifyInPlaceControlCreated(propEnum);
/*
            if (propEnum.Property.Value.HasMultipleValues)
                inPlaceCtrl.Text = "";
            else
                inPlaceCtrl.Text = propEnum.Property.Value.DisplayString;
*/
            inPlaceCtrl.OwnerPropertyEnumerator = propEnum;
            inPlaceCtrl.Font = propEnum.Property.Value.Font;

            MoveControl(valueRect, propEnum);

            return base.ShowControl(valueRect, propEnum);
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:31,代码来源:PropertyUITypeEditorFeel.cs


示例2: MoveControl

        public override void MoveControl(Rectangle valueRect, PropertyEnumerator propEnum)
        {
	        if (mInPlaceCtrl == null)
		        return;

            mInPlaceCtrl.BackColor = propEnum.Property.Value.BackColor;

            // Find where the string is actually displayed (a look instance could place it anywhere)
            Graphics graphics = mParentWnd.CreateGraphics();
	        Rectangle strRect = propEnum.Property.Value.GetStringValueRect(graphics, valueRect, Point.Empty /* not used */);
            strRect.X -= (propEnum.Property.Value.EditboxLeftMargin == -1 ?
                propEnum.Property.ParentGrid.GlobalTextMargin :
                propEnum.Property.Value.EditboxLeftMargin);
            strRect.Width = valueRect.Right - strRect.Left;

            // Calculate the height of the editbox, based on the font height

            Rectangle editRect = strRect;
            editRect.Inflate(0,-1);

            Win32Calls.TEXTMETRIC tm = new Win32Calls.TEXTMETRIC();
            Win32Calls.GetTextMetrics(graphics, mInPlaceCtrl.Font, ref tm);

            graphics.Dispose();

            int extraHeight = editRect.Height - tm.tmHeight;
            editRect.Y += extraHeight / 2;
            editRect.Height -= extraHeight;

            if (mInPlaceCtrl.Bounds != editRect)
                mInPlaceCtrl.Bounds = editRect;
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:32,代码来源:PropertyMaskedEditFeel.cs


示例3: ValueValidationEventArgs

 public ValueValidationEventArgs(PropertyEnumerator propEnum, PropertyEnumerator invalidPropEnum, object value, PropertyValue.ValueValidationResult result)
     : base(propEnum)
 {
     _valueValidationResult = result;
     _valueToValidate = value;
     _invalidPropEnum = invalidPropEnum;
 }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:7,代码来源:ValueValidationEventArgs.cs


示例4: ShowControl

        public override System.Windows.Forms.Control ShowControl(Rectangle valueRect, PropertyEnumerator propEnum)
        {
            PropInPlaceTextbox edit = null;

            if (mInPlaceCtrl == null)
            {
                edit = new PropInPlaceTextbox(false);
                edit.Visible = false;
                edit.Parent = mParentWnd;
                edit.Multiline = true;
                mInPlaceCtrl = edit;
            }
            else
                edit = (PropInPlaceTextbox)mInPlaceCtrl;

            NotifyInPlaceControlCreated(propEnum);

            edit.OwnerPropertyEnumerator = propEnum;
            edit.Font = propEnum.Property.Value.Font;

            MoveControl(valueRect, propEnum);

            if (edit.Focused == false)		// are we already being editing ? If yes, don't touch the edit content
            {
                if (edit.Text != propEnum.Property.Value.DisplayString)
                    edit.Text = propEnum.Property.Value.DisplayString;
            }

            return base.ShowControl(valueRect, propEnum);
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:30,代码来源:PropertyMultilineEditFeel.cs


示例5: ShowControl

        public override Control ShowControl(Rectangle valueRect, PropertyEnumerator propEnum)
        {
            if (DontShowInPlaceCtrl(propEnum))
                return null;

            PropInPlaceList list;

            if (mInPlaceCtrl == null)
            {
                list = new PropInPlaceList(_editable);
                list.Visible = false;
                list.Parent = mParentWnd;
                mInPlaceCtrl = list;
            }
            else
                list = (PropInPlaceList)mInPlaceCtrl;

            NotifyInPlaceControlCreated(propEnum);

//            list.Text = propEnum.Property.Value.DisplayString;
            list.OwnerPropertyEnumerator = propEnum;
            list.Font = propEnum.Property.Value.Font;

            MoveControl(valueRect, propEnum);

            return base.ShowControl(valueRect, propEnum);
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:27,代码来源:PropertyGraphicStencilFeel.cs


示例6: DrawCategoryLabelBackground

        public override void DrawCategoryLabelBackground(Graphics graphics, Rectangle rect, PropertyEnumerator enumSelf)
        {
            Rectangle fillRect = Rectangle.Intersect(rect, Rectangle.Round(graphics.ClipBounds));
            if (fillRect.IsEmpty)
                return;

            Brush brush;

            if (enumSelf.Property.Selected) 	// if selected
            {
                Color bkgColor;

                if (Grid.GridContainsFocus)
                    bkgColor = Grid.SelectedBackColor;
                else
                {
                    // If the control has not the focus, the background is light
                    bkgColor = Grid.SelectedNotFocusedBackColor;
                }

                brush = new SolidBrush(bkgColor);
            }
            else
                brush = new SolidBrush(Grid.GridBackColor);

            graphics.FillRectangle(brush, rect);
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:27,代码来源:DefaultDrawManager.cs


示例7: ShowControl

        public override Control ShowControl(Rectangle valueRect, PropertyEnumerator propEnum)
        {
            if ((propEnum.Property.Value.IsReadOnly(propEnum)) && !_editable)
                return null;

            PropInPlaceButton button;

            if (mInPlaceCtrl == null)
            {
                button = new PropInPlaceButton(_editable);
                button.Visible = false;
                button.Parent = mParentWnd;
                mInPlaceCtrl = button;
            }
            else
                button = (PropInPlaceButton)mInPlaceCtrl;

            NotifyInPlaceControlCreated(propEnum);

//            button.Text = propEnum.Property.Value.DisplayString;

            button.OwnerPropertyEnumerator = propEnum;

            button.Font = propEnum.Property.Value.Font;

            MoveControl(valueRect, propEnum);

            return base.ShowControl(valueRect, propEnum);
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:29,代码来源:PropertyButtonFeel.cs


示例8: OnDraw

        public override void OnDraw(Graphics graphics, Rectangle valueRect, Color textColor, PropertyEnumerator propEnum, string drawAnotherString)
        {
            valueRect.Height++;

            Rectangle colorRect = GetColorRect(valueRect);

            // Draw the color box
            Color color;
            try
            {
                color = (Color)Value.GetActualValue(drawAnotherString);
            }
            catch (Exception)
            {
                color = (Color)Value.GetValue();
            }
            Brush brush = new SolidBrush(color);
            graphics.FillRectangle(brush, colorRect);

            if (propEnum.Property.Value.HasMultipleValues)
                graphics.DrawLine(SystemPens.GrayText, colorRect.Left, colorRect.Bottom, colorRect.Right, colorRect.Top);

            // Draw a black frame around
            Pen pen = new Pen(Color.Black);
            graphics.DrawRectangle(pen, colorRect);
            pen.Dispose();

            Rectangle strRect = GetDisplayStringRect(graphics, valueRect, Point.Empty /* not used */);
            strRect.Width = valueRect.Right - strRect.Left;

            Win32Calls.DrawText(graphics, (drawAnotherString == null ? DisplayString : drawAnotherString),
                ref strRect, Value.Font, textColor,
                Win32Calls.DT_VCENTER | Win32Calls.DT_SINGLELINE | Win32Calls.DT_END_ELLIPSIS | Win32Calls.DT_NOPREFIX);
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:34,代码来源:PropertyColorLook.cs


示例9: ShowControl

        public override Control ShowControl(Rectangle valueRect, PropertyEnumerator propEnum)
        {
            if ((propEnum.Property.Value.IsReadOnly(propEnum)) && !_editable)
                return null;

            PropInPlaceTrackbar trackbar;

            if (mInPlaceCtrl == null)
            {
                trackbar = new PropInPlaceTrackbar(_editable);
                trackbar.Visible = false;
                trackbar.Parent = mParentWnd;
                mInPlaceCtrl = trackbar;
            }
            else
                trackbar = (PropInPlaceTrackbar)mInPlaceCtrl;

            NotifyInPlaceControlCreated(propEnum);

            trackbar.OwnerPropertyEnumerator = propEnum;

            trackbar.Font = propEnum.Property.Value.Font;

            MoveControl(valueRect, propEnum);

            return base.ShowControl(valueRect, propEnum);
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:27,代码来源:PropertyTrackBarFeel.cs


示例10: ShowControl

        public override Control ShowControl(Rectangle valueRect, PropertyEnumerator propEnum)
        {
            if ((propEnum.Property.Value.IsReadOnly(propEnum)) && !_editable)
                return null;

            PropInPlaceColorChooser colorChooser;

            if (mInPlaceCtrl == null)
            {
                colorChooser = new PropInPlaceColorChooser(_editable);
                colorChooser.Visible = false;
                colorChooser.Parent = mParentWnd;
                mInPlaceCtrl = colorChooser;
            }
            else
                colorChooser = (PropInPlaceColorChooser)mInPlaceCtrl;

            colorChooser.Font = propEnum.Property.Value.Font;
            colorChooser.Text = propEnum.Property.Value.DisplayString;

            MoveControl(valueRect, propEnum, false);

            colorChooser.OwnerPropertyEnumerator = propEnum;

            return base.ShowControl(valueRect, propEnum);
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:26,代码来源:PropertyColorChooserFeel.cs


示例11: ShowControl

        public override System.Windows.Forms.Control ShowControl(Rectangle valueRect, PropertyEnumerator propEnum)
        {
            if ((propEnum.Property.Value.IsReadOnly(propEnum)) && !_editable)
                return null;

            PropInPlaceUpDown upDown;

            if (mInPlaceCtrl == null)
            {
                upDown = new PropInPlaceUpDown(_editable);
                upDown.Visible = false;
                upDown.Parent = mParentWnd;
                mInPlaceCtrl = upDown;
            }
            else
                upDown = (PropInPlaceUpDown)mInPlaceCtrl;

            NotifyInPlaceControlCreated(propEnum);

//            upDown.Text = propEnum.Property.Value.DisplayString;
            upDown.OwnerPropertyEnumerator = propEnum;
            upDown.Font = propEnum.Property.Value.Font;

            MoveControl(valueRect, propEnum);

            return base.ShowControl(valueRect, propEnum);
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:27,代码来源:PropertyUpDownFeel.cs


示例12: DrawCategoryLabelBackground

        public override void DrawCategoryLabelBackground(Graphics graphics, Rectangle rect, PropertyEnumerator enumSelf)
        {
            Rectangle fillRect = Rectangle.Intersect(rect, Rectangle.Round(graphics.ClipBounds));
            if (fillRect.IsEmpty)
                return;

            Rectangle labelRect = enumSelf.Property.GetLabelColumnRect(rect, enumSelf);
            rect.Y++;
            rect.Height -= 3;

            fillRect = rect;
            int margin = enumSelf.Property.ParentGrid.GlobalTextMargin;
            fillRect.X = labelRect.Left + margin / 2;
            fillRect.Width = rect.Right - fillRect.Left;

            Brush brush;
            if (enumSelf.Property.Selected)	// if selected
                brush = new SolidBrush(Grid.GridContainsFocus ? Grid.SelectedBackColor : Grid.SelectedNotFocusedBackColor);
            else
                brush = new LinearGradientBrush(fillRect, _categoryBkgColor1, _categoryBkgColor2, 0.0f);

            graphics.FillRectangle(brush, fillRect);

            brush.Dispose();
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:25,代码来源:LightColorDrawManager.cs


示例13: GetLabelColumnRect

        public override Rectangle GetLabelColumnRect(Rectangle itemRect, PropertyEnumerator enumerator)
        {
            Rectangle labelRect = itemRect;
            labelRect.X = ParentGrid.LeftColumnWidth + 1;
            labelRect.Width = itemRect.Right - labelRect.Left;

            return labelRect;
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:8,代码来源:PropertyHyperLink.cs


示例14: PropertyTypeDescriptorContext

 public PropertyTypeDescriptorContext(PropertyDescriptor descriptor, object instance,
     PropertyEnumerator propEnum, PropertyGrid propGrid)
 {
     _descriptor = descriptor;
     _targetInstance = instance;
     _propEnum = propEnum;
     _propertyGrid = propGrid;
 }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:8,代码来源:PropertyTypeDescriptorContext.cs


示例15: DrawLeftColumnBackground

        public override void DrawLeftColumnBackground(Graphics graphics, Rectangle rect, PropertyEnumerator propEnum)
        {
            Rectangle fillRect = Rectangle.Intersect(rect, Rectangle.Round(graphics.ClipBounds));
            if (fillRect.IsEmpty)
                return;

            using(SolidBrush brush = new SolidBrush(Grid.GridColor))
                graphics.FillRectangle(brush, fillRect);
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:9,代码来源:DotnetDrawManager.cs


示例16: IsReadOnly

        public override bool IsReadOnly(PropertyEnumerator selfEnum)
        {
            if (!Grid.Grid.Enabled && (Grid.DisableMode == PropertyGrid.DisableModes.Simple))
                return true;

            if (ParentValue.IsReadOnly(selfEnum.Parent))
                return true;

            return false;
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:10,代码来源:PropertyValueSimulated.cs


示例17: DrawPropertyValueBackground

        public virtual void DrawPropertyValueBackground(Graphics graphics, Rectangle rect, PropertyEnumerator enumerator)
        {
            Rectangle fillRect = Rectangle.Intersect(rect, Rectangle.Round(graphics.ClipBounds));
            if (fillRect.IsEmpty)
                return;

            Brush brush = new SolidBrush(enumerator.Property.Value.BackColor);
            graphics.FillRectangle(brush, fillRect);
            brush.Dispose();
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:10,代码来源:CustomDrawManager.cs


示例18: MoveControl

        public override void MoveControl(Rectangle valueRect, PropertyEnumerator propEnum)
        {
            if (mInPlaceCtrl == null)
                return;

            if (mInPlaceCtrl is PropInPlaceDateTime)
            {
                valueRect.Height--;

                Win32Calls.RECT rect = new Win32Calls.RECT();
                Win32Calls.GetWindowRect(mInPlaceCtrl.Handle, ref rect);
                Rectangle bounds = Rectangle.FromLTRB(rect.Left, rect.Top, rect.Right, rect.Bottom);
                bounds = mInPlaceCtrl.Parent.RectangleToClient(bounds);

                if (bounds != valueRect)
                {
                    mInPlaceCtrl.Invalidate();

                    // Bounds doesn't work because of DateTimePicker.PreferredHeight
                    Win32Calls.SetWindowPos(mInPlaceCtrl.Handle, IntPtr.Zero, valueRect.Left, valueRect.Top,
                        valueRect.Width, valueRect.Height, Win32Calls.SWP_NOZORDER | Win32Calls.SWP_NOACTIVATE |
                        Win32Calls.SWP_NOREDRAW);

                    // Causes WM_NCPAINT
                    Win32Calls.RedrawWindow(mInPlaceCtrl.Handle, IntPtr.Zero, IntPtr.Zero, 0x0561);
                }
            }
            else
            {
                // Find where the string is actually displayed (a look instance could place it anywhere)
                Graphics graphics = mParentWnd.CreateGraphics();
                Rectangle strRect = propEnum.Property.Value.GetStringValueRect(graphics, valueRect, Point.Empty /* not used */);
                strRect.X -= (propEnum.Property.Value.EditboxLeftMargin == -1 ? propEnum.Property.ParentGrid.GlobalTextMargin :
                    propEnum.Property.Value.EditboxLeftMargin);
                strRect.Width = valueRect.Right - strRect.Left;

                // Calculate the height of the editbox, based on the font height

                Rectangle editRect = strRect;
                editRect.Inflate(0, -1);

                Win32Calls.TEXTMETRIC tm = new Win32Calls.TEXTMETRIC();
                Win32Calls.GetTextMetrics(graphics, mInPlaceCtrl.Font, ref tm);

                graphics.Dispose();

                int extraHeight = editRect.Height - tm.tmHeight;
                editRect.Y += extraHeight / 2;
                editRect.Height -= extraHeight;

                if (mInPlaceCtrl.Bounds != editRect)
                    mInPlaceCtrl.Bounds = editRect;
            }
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:54,代码来源:PropertyDateTimeFeel.cs


示例19: FindAfter

        /// <summary>
        /// Searches a property given its ID inside the whole property tree but only from a given enumerator and beyond.
        /// The enumerator can be sibling or deep and will restrict the search accordingly.
        /// </summary>
        /// <param name="afterEnumerator">The enumerator from which the property will be searched.</param>
        /// <param name="propertyId">The ID of the property being searched.</param>
        /// <returns>A deep enumerator pointing to the found property. If not found it will point to RightBound.</returns>
        public PropertyEnumerator FindAfter(PropertyEnumerator afterEnumerator, int propertyId)
        {
            PropertyEnumerator propEnum = new PropertyDeepEnumerator(afterEnumerator.Node);
            while (propEnum.MoveNext() != propEnum.RightBound)
            {
                if (propEnum.Property.Id == propertyId)
                    break;
            }

            // If the element is not found, the enumerator will point to RightBound
            return propEnum;
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:19,代码来源:LinkedList.cs


示例20: OnDraw

        public override void OnDraw(Graphics graphics, Rectangle valueRect, Color textColor, PropertyEnumerator propEnum, string drawAnotherString)
        {
            if ((drawAnotherString != null) && (drawAnotherString.Length == 0))
                return;

            Rectangle strRect = GetDisplayStringRect(graphics, valueRect, Point.Empty /* not used */);
            strRect.Y += 2;
            strRect.Height = valueRect.Bottom - 2 - strRect.Y;

            Win32Calls.DrawText(graphics, DisplayString, ref strRect, Value.Font, textColor,
                Win32Calls.DT_WORDBREAK | Win32Calls.DT_EDITCONTROL | Win32Calls.DT_NOPREFIX);
        }
开发者ID:ChrisMoreton,项目名称:Test3,代码行数:12,代码来源:PropertyMultilineEditLook.cs



注:本文中的VisualHint.SmartPropertyGrid.PropertyEnumerator类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Curves.Curve类代码示例发布时间:2022-05-26
下一篇:
C# Charts.DataSeries类代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap