public class UltraGridCellProxy : Infragistics.Win.UltraEditorProxyBase, Infragistics.Win.AppStyling.ISupportAppStyling, Infragistics.Win.IUltraControl, Infragistics.Win.IUltraControlElement, Infragistics.Win.Touch.ISupportTouchMetrics, Infragistics.Win.UIAutomation.IProvideUIAutomation
'宣言
Public Class UltraGridCellProxy
Inherits Infragistics.Win.UltraEditorProxyBase
Implements Infragistics.Win.AppStyling.ISupportAppStyling, Infragistics.Win.IUltraControl, Infragistics.Win.IUltraControlElement, Infragistics.Win.Touch.ISupportTouchMetrics, Infragistics.Win.UIAutomation.IProvideUIAutomation
Imports Infragistics.Win.UltraWinGrid
PrivateSub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) HandlesMyBase.Load
' Create a new instance of a proxy
Dim proxy AsNew UltraGridCellProxy()
' Set the ColumnKey property to the name of a column of a band that the
' associated RowEditTemplate is bound to
proxy.ColumnKey = "Column 1"' Add the proxy to the RowEditTemplate's Controls collection
Me.UltraGridRowEditTemplate1.Controls.Add(proxy)
End Sub
'宣言
Public Class UltraGridCellProxy
Inherits Infragistics.Win.UltraEditorProxyBase
Implements Infragistics.Win.AppStyling.ISupportAppStyling, Infragistics.Win.IUltraControl, Infragistics.Win.IUltraControlElement, Infragistics.Win.Touch.ISupportTouchMetrics, Infragistics.Win.UIAutomation.IProvideUIAutomation
using Infragistics.Win.UltraWinGrid;
privatevoid Form1_Load(object sender, EventArgs e)
{
// Create a new instance of a proxy
UltraGridCellProxy proxy = new UltraGridCellProxy();
// Set the ColumnKey property to the name of a column of a band that the
// associated RowEditTemplate is bound to
proxy.ColumnKey = "Column 1";
// Add the proxy to the RowEditTemplate's Controls collection
this.ultraGridRowEditTemplate1.Controls.Add(proxy);
}
'宣言
Public Class UltraGridCellProxy
Inherits Infragistics.Win.UltraEditorProxyBase
Implements Infragistics.Win.AppStyling.ISupportAppStyling, Infragistics.Win.IUltraControl, Infragistics.Win.IUltraControlElement, Infragistics.Win.Touch.ISupportTouchMetrics, Infragistics.Win.UIAutomation.IProvideUIAutomation