MenuBindingsEditor クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
関連付けられた DataBindings コントロールの Menu コレクション用のコンポーネント エディターを提供します。
public ref class MenuBindingsEditor : System::Drawing::Design::UITypeEditor
public class MenuBindingsEditor : System.Drawing.Design.UITypeEditor
type MenuBindingsEditor = class
inherit UITypeEditor
Public Class MenuBindingsEditor
Inherits UITypeEditor
- 継承
例
次のコード例は、 属性をEditorAttribute使用して、 クラスと UITypeEditor クラス (バインディング エディターの基本クラス) を、コレクションを取得および設定するクラスから派生したカスタム コントロールのWebControlプロパティに関連付けるMenuBindingsEditor方法をMenuItemCollection示しています。
private MenuItemBindingCollection localBindings;
// Associate the MenuBindingsEditor with the DataBindings.
[Editor(typeof(System.Web.UI.Design.WebControls.MenuBindingsEditor),
typeof(UITypeEditor))]
public MenuItemBindingCollection DataBindings
{
get { return localBindings; }
set { localBindings = value; }
} // DataBindings
Private localBindings As MenuItemBindingCollection
' Associate the MenuBindingsEditor with the DataBindings.
<EditorAttribute( GetType(System.Web.UI.Design.WebControls. _
MenuBindingsEditor), _
GetType(UITypeEditor))> _
Public Property DataBindings() As MenuItemBindingCollection
Get
Return localBindings
End Get
Set
localBindings = value
End Set
End Property ' DataBindings
注釈
クラスはMenuBindingsEditor、関連付けられたMenuコントロール内のコレクションの要素をMenuItemBindingDataBindings編集するためのユーザー インターフェイスを提供します。
オブジェクトはMenuBindingsEditor、ビジュアル デザイナーの [プロパティ] グリッドで DataBindings プロパティの省略記号 (...) ボタンを選択するか、コントロールの [共通タスク] コンテキスト メニューから [メニュー項目の編集] を選択して呼び出されます。
メソッドは EditValue 、関連付けられた Menu コントロールのデータ バインディング コレクションの値を編集します。 メソッドは GetEditStyle 、このエディターに関連付けられている編集スタイルを取得します。
コンストラクター
MenuBindingsEditor() |
MenuBindingsEditor クラスの新しいインスタンスを初期化します。 |
プロパティ
IsDropDownResizable |
ユーザーがドロップダウン エディターのサイズを変更できるかどうかを示す値を取得します。 (継承元 UITypeEditor) |
メソッド
適用対象
こちらもご覧ください
.NET