当前位置: 首页>>代码示例>>C#>>正文


C# ToolStripItem.SetOwner方法代码示例

本文整理汇总了C#中System.Windows.Forms.ToolStripItem.SetOwner方法的典型用法代码示例。如果您正苦于以下问题:C# ToolStripItem.SetOwner方法的具体用法?C# ToolStripItem.SetOwner怎么用?C# ToolStripItem.SetOwner使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Windows.Forms.ToolStripItem的用法示例。


在下文中一共展示了ToolStripItem.SetOwner方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: OnAfterRemove

        /// <devdoc>
        ///  Do proper cleanup of ownership, etc.
        /// </devdoc>
        private void OnAfterRemove(ToolStripItem item) {
            if (itemsCollection) {
                ToolStrip parent = null; 
                if (item != null) {
                    parent = item.ParentInternal;
                    item.SetOwner(null);
                }

                if (owner != null) {
                    if (!owner.IsDisposingItems) {
                        ToolStripItemEventArgs e = new ToolStripItemEventArgs(item);
                        owner.OnItemRemoved(e);

                        // VSWhidbey 505129
                        // dont fire the ItemRemoved event for Overflow
                        // it would fire constantly.... instead clear any state if the item
                        // is really being removed from the master collection.
                        if (parent != null && parent != owner) {
                            parent.OnItemVisibleChanged(e, /*performLayout*/false);
                        }
                    }
                }
                
            }
        }
开发者ID:nlh774,项目名称:DotNetReferenceSource,代码行数:28,代码来源:ToolStripItemCollection.cs

示例2: SetOwner

        private void SetOwner(ToolStripItem item) {

            if (itemsCollection) {
              
                if (item != null) {
                    if (item.Owner != null) {
                        item.Owner.Items.Remove(item);
                    }

                    item.SetOwner(owner);
                    if (item.Renderer != null) {
                        item.Renderer.InitializeItem(item);
                    }
                }
            }
        }
开发者ID:nlh774,项目名称:DotNetReferenceSource,代码行数:16,代码来源:ToolStripItemCollection.cs

示例3: OnAfterRemove

 private void OnAfterRemove(ToolStripItem item)
 {
     if (this.itemsCollection)
     {
         ToolStrip parentInternal = null;
         if (item != null)
         {
             parentInternal = item.ParentInternal;
             item.SetOwner(null);
         }
         if ((this.owner != null) && !this.owner.IsDisposingItems)
         {
             ToolStripItemEventArgs e = new ToolStripItemEventArgs(item);
             this.owner.OnItemRemoved(e);
             if ((parentInternal != null) && (parentInternal != this.owner))
             {
                 parentInternal.OnItemVisibleChanged(e, false);
             }
         }
     }
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:21,代码来源:ToolStripItemCollection.cs


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