BindingSource.Current プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > BindingSource.Current プロパティの意味・解説 

BindingSource.Current プロパティ

メモ : このプロパティは、.NET Framework version 2.0新しく追加されたものです。

リスト内の現在の項目を取得します

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

解説解説
使用例使用例

MoveNext、MoveFirst、Current、および Position の各メンバコード例次に示します。この例を実行するには、BindingSource1 という名前の BindingSource と button1 という名前のボタンを持つ、System.Drawing.Drawing2D 名前空間インポートされているフォームコード貼り付けます。次にForm1_Load メソッドおよび Form1_Paint メソッドフォームLoad イベントおよび Paint イベント関連付けbutton1_click メソッドbutton1Click イベント関連付けます。Visual Basic使用する場合、System.Data.dll への参照追加する必要があります

Sub Form1_Load(ByVal sender As
 Object, ByVal e As EventArgs)
 _
    Handles Me.Load

    ' Set the data source to the Brush type and populate
    ' BindingSource1 with some brushes.
    BindingSource1.DataSource = GetType(System.Drawing.Brush)
    BindingSource1.Add(New TextureBrush(New
 Bitmap(GetType(Button), _
        "Button.bmp")))
    BindingSource1.Add(New HatchBrush(HatchStyle.Cross, Color.Red))
    BindingSource1.Add(New SolidBrush(Color.Blue))

End Sub



Private Sub button1_Click(ByVal
 sender As Object, ByVal
 e As EventArgs) _
     Handles button1.Click

    ' If you are not at the end of the list, move to the next item
    ' in the BindingSource.
    If BindingSource1.Position + 1 < BindingSource1.Count Then
        BindingSource1.MoveNext()

        ' Otherwise, move back to the first item.
    Else
        BindingSource1.MoveFirst()
    End If

    ' Force the form to repaint.
    Me.Invalidate()

End Sub


Sub Form1_Paint(ByVal sender As
 Object, ByVal e As PaintEventArgs)

    ' Get the current item in the BindingSource.
    Dim item As Brush = CType(BindingSource1.Current,
 Brush)

    ' If the current type is a TextureBrush, fill an ellipse.
    If item.GetType().Equals(GetType(TextureBrush))
 Then
        e.Graphics.FillEllipse(item, _
        e.ClipRectangle)

        ' If the current type is a HatchBrush, fill a triangle.
    ElseIf item.GetType().Equals(GetType(HatchBrush))
 Then
        e.Graphics.FillPolygon(item, New Point() _
         {New Point(0, 0), New Point(0, 200), New
 Point(200, 0)})

        ' Otherwise, fill a rectangle.
    Else
        e.Graphics.FillRectangle(item, e.ClipRectangle)
    End If

End Sub

void Form1_Load(object sender, EventArgs e)
{
    // Set the data source to the Brush type and populate
    // BindingSource1 with some brushes.
    BindingSource1.DataSource = typeof(System.Drawing.Brush);
    BindingSource1.Add(
        new TextureBrush(new Bitmap(typeof(Button),
 "Button.bmp")));
    BindingSource1.Add(new HatchBrush(HatchStyle.Cross, Color.Red));
    BindingSource1.Add(new SolidBrush(Color.Blue));
}


private void button1_Click(object sender, EventArgs
 e)
{
    // If you are not at the end of the list, move to the next item
    // in the BindingSource.
    if (BindingSource1.Position + 1 < BindingSource1.Count)
        BindingSource1.MoveNext();

    // Otherwise, move back to the first item.
    else
        BindingSource1.MoveFirst();

    // Force the form to repaint.
    this.Invalidate();
}

void Form1_Paint(object sender, PaintEventArgs e)
{
    // Get the current item in the BindingSource.
    Brush item = (Brush)BindingSource1.Current;

    // If the current type is a TextureBrush, fill an ellipse.
    if (item.GetType() == typeof(TextureBrush))
        e.Graphics.FillEllipse(item,
           e.ClipRectangle);

    // If the current type is a HatchBrush, fill a triangle.
    else if (item.GetType() == typeof(HatchBrush))
        e.Graphics.FillPolygon(item,
            new Point[] { new Point(0, 0),
 new Point(0, 200),
            new Point(200, 0)});

    // Otherwise, fill a rectangle.
    else
        e.Graphics.FillRectangle(
            (Brush)BindingSource1.Current, e.ClipRectangle);
}
    void Form1_Load(Object^ sender, EventArgs^ e)
    {
        // Set the data source to the Brush type and populate
        // bindingSource1; with some brushes.
        bindingSource1->DataSource = System::Drawing::Brush::typeid;
        bindingSource1->Add(
            gcnew TextureBrush(gcnew Bitmap(Button::typeid, "Button.bmp")));
        bindingSource1->Add(gcnew HatchBrush(HatchStyle::Cross, Color::Red));
        bindingSource1->Add(gcnew SolidBrush(Color::Blue));
    }


private:
    void moveNextButton_Click(Object^ sender, EventArgs^ e)
    {
        // If you are not at the end of the list, move to the next item
        // in the BindingSource.
        if (bindingSource1->Position + 1 < bindingSource1->Count)
        {
            bindingSource1->MoveNext();
        }
        // Otherwise, move back to the first item.
        else
        {
            bindingSource1->MoveFirst();
        }
        // Force the form to repaint.
        this->Invalidate();
    }

    void Form1_Paint(Object^ sender, PaintEventArgs^ e)
    {
        // Get the current item in the BindingSource.
        Brush^ item = (Brush^) bindingSource1->Current;

        // If the current type is a TextureBrush, fill an ellipse.
        if (item->GetType() == TextureBrush::typeid)
        {
            e->Graphics->FillEllipse(item,e->ClipRectangle);
        }
        // If the current type is a HatchBrush, fill a triangle.
        else if (item->GetType() == HatchBrush::typeid)
        {

            e->Graphics->FillPolygon(item, 
                gcnew array<Point> {*gcnew Point(0, 0),
                *gcnew Point(0, 200),
                *gcnew Point(200, 0)});
        }
        // Otherwise, fill a rectangle.
        else
        {
            e->Graphics->FillRectangle(
                (Brush^)bindingSource1->Current, e->ClipRectangle);
        }
    }

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からBindingSource.Current プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からBindingSource.Current プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からBindingSource.Current プロパティ を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「BindingSource.Current プロパティ」の関連用語

BindingSource.Current プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



BindingSource.Current プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS