添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
被表白的柑橘  ·  Failed to start ...·  1 月前    · 
小胡子的沙发  ·  linux ...·  2 月前    · 
魁梧的小蝌蚪  ·  ToolTipOpening and ...·  6 月前    · 
App Builder (New) Ignite UI Angular ASP.NET Core ASP.NET MVC Blazor jQuery React Web Components Ultimate UI for ASP.NET Web Forms Ultimate UI for Windows Forms Ultimate UI for WPF Ultimate UI for Uno Ultimate UI for UWP Ultimate UI for WinUI Ultimate UI for Xamarin Test automation for Micro Focus UFT: Windows Forms Test automation for Micro Focus UFT: WPF Test automation for IBM RFT: Windows Forms
  • Indigo.Design A Unified Platform for Visual Design, UX Prototyping, Code Generation, and App Development
  • App Builder Cloud-based WYSIWYG Drag & Drop Tool, Endless Theming options and Standards-Based Code Output
  • Business Intelligence
  • Reveal Easily embed beautiful data visualizations into your apps
  • Slingshot Empower everyone in your organization to use data to make smarter business decisions
  • Team Productivity
  • Slingshot Connect everyone you work with to data, project management, content and chats for better results.
  • SharePlus Secure, instant access to content and data on the go – with or without connectivity.
  • Learn & Support
  • Help & Support Documents
  • Blogs
  • Forums
  • Product Ideas
  • Reference Applications
  • Customer Stories
  • Webinars
  • eBook & Whitepapers
  • Events
  • Free Trials
  • Pricing
  • Product Pricing / Buy Online
  • Contact Us
  • DataBind Method (UltraGridBase)

    Rebinds to the data source, causing InitializeLayout to be fires again. Note that setting the DataSource property binds to the data source and loads the data. This method is for forcing the UltraGrid to reload the data.
    Syntax
  • Visual Basic
  • Remarks

    DataBind method reloads the data. Reloading the data source will cause the InitializeLayout event to be fired. To bind to a data source, simply setting the DataSource property is sufficient. This method is used for forcing the UltraGrid to reload the data.

    Note: Setting the DataSource property and calling the DataBind after it will cause the UltraGrid to load the data twice, and cause the InitializeLayout event to be fired twice as well.

    Example
    Following code binds an UltraGrid to a data source in Form's Load event and calls DataBind on a button's handler to force the UltraGrid to reload the data source.
    Imports Infragistics.Win.UltraWinGrid Private Sub Form1_Load( ByVal sender As Object , ByVal e As System.EventArgs) Handles MyBase .Load Me .ultraGrid1.SetDataBinding( Me .DataSet11, "Customers" ) End Sub Private Sub Button78_Click( ByVal sender As Object , ByVal e As System.EventArgs) Handles button78.Click ' When DataBind is called, the UltraGrid will reload the bands, columns and the rows ' from the data source. This can be used to force the grid to rebind to the data source. Me .UltraGrid1.DataBind() End Sub
    // When DataBind is called, the UltraGrid will reload the bands, columns and the rows // from the data source. This can be used to force the grid to rebind to the data source. this .ultraGrid1.DataBind( );
    Requirements

    Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also