本文整理汇总了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);
示例2: Action
public Action(Ext.ActionConfig config){}
示例3: Date
public Date(Ext.DateConfig config){}
示例4: ProgressBar
public ProgressBar(Ext.ProgressBarConfig config){}
示例5: BoxComponent
/// <summary></summary>
/// <param name="config">The configuration options.</param>
/// <returns></returns>
public extern BoxComponent(Ext.Element config);
示例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){}
示例7: bindStore
/// <summary>
/// Changes the data store bound to this LoadMask. ...
/// </summary>
public object bindStore(Ext.data.Store store, object initial){return null;}
示例8: cancelLayout
/// <summary>
/// Cancels layout of a component.
/// </summary>
/// <param name="comp">
/// </param>
public static void cancelLayout(Ext.Component comp){}
示例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;}
示例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){}
示例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){}
示例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){}
示例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){}
示例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){}
示例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){}