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


C# Ext.Ext类代码示例

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


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

示例1: SplitButton

		/// <summary></summary>
		/// <param name="config">The configuration options.</param>
		/// <returns></returns>
		public extern SplitButton(Ext.Element config);
开发者ID:JimmyJune,项目名称:DotWeb-Contrib,代码行数:4,代码来源:SplitButton.cs

示例2: Action

 public Action(Ext.ActionConfig config){}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:1,代码来源:Ext.Action.cs

示例3: Date

 public Date(Ext.DateConfig config){}
开发者ID:hultqvist,项目名称:SharpKit-SDK,代码行数:1,代码来源:Ext.Date.cs

示例4: ProgressBar

 public ProgressBar(Ext.ProgressBarConfig config){}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:1,代码来源:Ext.ProgressBar.cs

示例5: BoxComponent

		/// <summary></summary>
		/// <param name="config">The configuration options.</param>
		/// <returns></returns>
		public extern BoxComponent(Ext.Element config);
开发者ID:JimmyJune,项目名称:DotWeb-Contrib,代码行数:4,代码来源:BoxComponent.cs

示例6: removeDocked

 /// <summary>
 /// Removes the docked item from the panel.
 /// </summary>
 /// <param name="item"><p>. The Component to remove.</p>
 /// </param>
 /// <param name="autoDestroy"><p>Destroy the component after removal.</p>
 /// </param>
 public static void removeDocked(Ext.Component item, object autoDestroy=null){}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:8,代码来源:Ext.MessageBox.cs

示例7: bindStore

 /// <summary>
 /// Changes the data store bound to this LoadMask. ...
 /// </summary>
 public object bindStore(Ext.data.Store store, object initial){return null;}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:4,代码来源:LoadMask.cs

示例8: cancelLayout

 /// <summary>
 /// Cancels layout of a component.
 /// </summary>
 /// <param name="comp">
 /// </param>
 public static void cancelLayout(Ext.Component comp){}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:6,代码来源:Ext.MessageBox.cs

示例9: insert

 /// <summary>
 /// Inserts a Component into this Container at a specified index. Fires the
 /// beforeadd event before inserting, then fires the add
 /// event after the Component has been inserted.
 /// </summary>
 /// <param name="index"><p>The index at which the Component will be inserted
 /// into the Container's items collection</p>
 /// </param>
 /// <param name="component"><p>The child Component to insert.</p>
 /// <p>Ext uses lazy rendering, and will only render the inserted Component should
 /// it become necessary.</p>
 /// <p>A Component config object may be passed in order to avoid the overhead of
 /// constructing a real Component object if lazy rendering might mean that the
 /// inserted Component will not be rendered immediately. To take advantage of
 /// this 'lazy instantiation', set the <see cref="Ext.ComponentConfig.xtype">Ext.Component.xtype</see> config
 /// property to the registered type of the Component wanted.</p>
 /// <p>For a list of all available xtypes, see <see cref="Ext.Component">Ext.Component</see>.</p>
 /// </param>
 /// <returns>
 /// <span><see cref="Ext.Component">Ext.Component</see></span><div><p>component The Component (or config object) that was
 /// inserted with the Container's default config values applied.</p>
 /// </div>
 /// </returns>
 public static Ext.Component insert(JsNumber index, Ext.Component component){return null;}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:24,代码来源:Ext.MessageBox.cs

示例10: bindStoreListeners

 /// <summary>
 /// Binds listeners for this component to the store. By default it will add
 /// anything bound by the getStoreListeners method, however it can be overridden
 /// in a subclass to provide any more complicated handling.
 /// </summary>
 /// <param name="store"><p>The store to bind to</p>
 /// </param>
 public virtual void bindStoreListeners(Ext.data.AbstractStore store){}
开发者ID:hultqvist,项目名称:SharpKit-SDK,代码行数:8,代码来源:Ext.LoadMask.cs

示例11: afterLayout

 /// <summary>
 /// Invoked after the Container has laid out (and rendered if necessary)
 /// its child Components.
 /// <p>This is a <i>template method</i>.
 /// a hook into the functionality of this class.
 /// Feel free to override it in child classes.</p>
 /// </summary>
 /// <param name="layout">
 /// </param>
 protected static void afterLayout(Ext.layout.container.Container layout){}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:10,代码来源:Ext.MessageBox.cs

示例12: bindStore

 /// <summary>
 /// Changes the data store bound to this LoadMask.
 /// </summary>
 /// <param name="store"><p>The store to bind to this LoadMask</p>
 /// </param>
 public void bindStore(Ext.data.Store store){}
开发者ID:hultqvist,项目名称:SharpKit-SDK,代码行数:6,代码来源:Ext.LoadMask.cs

示例13: LoadMask

 /// <summary>
 /// Creates new LoadMask.
 /// </summary>
 /// <param name="comp"><p>The Component you wish to mask. The the mask will be automatically sized
 /// upon Component resize, and the message box will be kept centered.</p><p>
 /// </param>
 /// <param name="config"><p>The config object</p>
 /// </param>
 /// <returns>
 /// <span><see cref="Object">Object</see></span><div>
 /// </div>
 /// </returns>
 public LoadMask(Ext.Component comp, object config=null){}
开发者ID:hultqvist,项目名称:SharpKit-SDK,代码行数:13,代码来源:Ext.LoadMask.cs

示例14: onUnbindStore

 /// <summary>
 /// Template method, it is called when an existing store is unbound
 /// from the current instance.
 /// </summary>
 /// <param name="store"><p>The store being unbound</p>
 /// </param>
 /// <param name="initial"><p>True if this store is being bound as initialization of the instance.</p>
 /// </param>
 public virtual void onUnbindStore(Ext.data.AbstractStore store, bool initial){}
开发者ID:hultqvist,项目名称:SharpKit-SDK,代码行数:9,代码来源:Ext.LoadMask.cs

示例15: onRemove

 /// <summary>
 /// This method is invoked after a new Component has been
 /// removed. It is passed the Component which has been
 /// removed. This method may be used to update any internal
 /// structure which may depend upon the state of the child items.
 /// <p>This is a <i>template method</i>.
 /// a hook into the functionality of this class.
 /// Feel free to override it in child classes.</p>
 /// </summary>
 /// <param name="component">
 /// </param>
 /// <param name="autoDestroy">
 /// </param>
 protected static void onRemove(Ext.Component component, bool autoDestroy){}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:14,代码来源:Ext.MessageBox.cs


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