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

C# Ext.Ext类代码示例

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

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



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


示例16: isAncestor

 /// <summary>
 /// Determines whether this Container is an ancestor of the passed Component.
 /// This will return true if the passed Component is anywhere within the subtree
 /// beneath this Container.
 /// </summary>
 /// <param name="possibleDescendant"><p>The Component to test for presence
 /// within this Container's subtree.</p>
 /// </param>
 public static void isAncestor(Ext.Component possibleDescendant){}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:9,代码来源:Ext.MessageBox.cs


示例17: onRender

 /// <summary>
 /// Template method called when this Component's DOM structure is created.
 /// At this point, this Component's (and all descendants') DOM structure <em>exists</em> but it has not
 /// been layed out (positioned and sized).
 /// Subclasses which override this to gain access to the structure at render time should
 /// call the parent class's method before attempting to access any child elements of the Component.
 /// <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="parentNode"><p>The parent Element in which this Component's encapsulating element is contained.</p>
 /// </param>
 /// <param name="containerIdx"><p>The index within the parent Container's child collection of this Component.</p>
 /// </param>
 protected static void onRender(Ext.dom.Element parentNode, JsNumber containerIdx){}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:15,代码来源:Ext.MessageBox.cs


示例18: isDescendantOf

 /// <summary>
 /// Determines whether this component is the descendant of a particular container.
 /// </summary>
 /// <param name="container">
 /// </param>
 /// <returns>
 /// <span><see cref="bool">Boolean</see></span><div><p>True if it is.</p>
 /// </div>
 /// </returns>
 public static bool isDescendantOf(Ext.container.Container container){return false;}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:10,代码来源:Ext.MessageBox.cs


示例19: MessageBox

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


示例20: onAdd

 /// <summary>
 /// This method is invoked after a new Component has been added. It
 /// is passed the Component which has been added. 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="position">
 /// </param>
 protected static void onAdd(Ext.Component component, JsNumber position){}
开发者ID:fjgandrade,项目名称:sharpkit,代码行数:14,代码来源:Ext.MessageBox.cs



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
C# Net.DirectEventArgs类代码示例发布时间:2022-05-24
下一篇:
C# Expedia.User类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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