Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フォーム アプリケーションがあり、その中に円を描いたとします。その円オブジェクト内に変数を格納できますか? このようなもの?
Dim circle1.testVar As Integer = 1
それはうまくいきますか?うまくいかない場合、これを行う方法はありますか?
いいえ、プロパティを に動的に追加することはできませんControl。コントロールの既存のプロパティを使用できます。Tag
Control
Tag
circle1.Tag = 1
残念ながらTagは型であるため、値を取得するときに値Objectをチェックおよび/またはキャストする必要があります。Nothing
Object
Nothing