このプロパティが True に設定されている場合、ユーザーはコンボの値を変更できません。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Private Sub UltraCombo1_InitializeLayout(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs) Handles UltraCombo1.InitializeLayout ' Prevent the user from modifying the contents of the UltraCombo by setting ' its ReadOnly property to true. Me.UltraCombo1.ReadOnly = True End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void UltraCombo1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { // Prevent the user from modifying the contents of the UltraCombo by setting // its ReadOnly property to true. this.UltraCombo1.ReadOnly = true; }