バージョン

UseEditContextMenu プロパティ

編集ウィンドウにデフォルトのコンテキストメニューを表示するかを設定します。
シンタックス
'宣言
 
Public Property UseEditContextMenu As Boolean
public bool UseEditContextMenu {get; set;}
解説

デフォルト値のFalseに設定されると、ContextMenu プロパティが明示的に設定されていない限り、コントロールをマウスの右ボタンでクリックしたときに、コントロールはコンテキストメニューを表示しません。

Trueに設定されると、ContextMenu プロパティが明示的に設定されていない限り、コントロールをマウスの右ボタンでクリックしたときに、コントロールはTextBoxのデフォルトのコンテキストメニューを表示します。

注:ContextMenu プロパティが「Yearly」に設定されているときには、PatternInterval プロパティは適用できません。

使用例
Private Function WillDisplayContextMenu() As Boolean

    '	If the UseEditContextMenu property is false, and the ContextMenu
    '	property has not been explicitly set, return false otherwise, return true
    If (Not Me.ultraCalendarCombo1.UseEditContextMenu And Me.ultraCalendarCombo1.ContextMenu Is Nothing) Then
        Return False
    Else
        Return True
    End If

End Function
private bool WillDisplayContextMenu()
{

	//	If the UseEditContextMenu property is false, and the ContextMenu
	//	property has not been explicitly set, return false; otherwise, return true
	if ( ! this.ultraCalendarCombo1.UseEditContextMenu &&
		 this.ultraCalendarCombo1.ContextMenu == null )
		return false;
	else
		return true;

}
参照