コード例 #1
0
 /// <summary>
 ///  This class represents all the information to render the ToolStrip
 /// </summary>
 public ToolStripItemRenderEventArgs(Graphics g, ToolStripItem item)
 {
     Graphics = g.OrThrowIfNull();
     Item     = item.OrThrowIfNull();
 }
コード例 #2
0
 public ToolStripItemAccessibleObject(ToolStripItem ownerItem)
 {
     _ownerItem = ownerItem.OrThrowIfNull();
 }
コード例 #3
0
 public ToolStripItemInternalLayout(ToolStripItem ownerItem)
 {
     _ownerItem = ownerItem.OrThrowIfNull();
 }