私の質問は単純なようです。そうであることを願っています。
の動的コレクションがTextBox
ありUiElementCollection
ます。
はのTextBox
子ですStackPanel
。
私の目標は単純です。たとえば、のを使用し
て新しいものを作成します。TextBox
Text
UiElementCollection[1]
TextBox myTextBox = new TextBox(); // New TextBox
UiElementCollection myCollection = myStackPanel.Children; // New Collection
// If I call this :
myCollection[8] = myTextBox;
// Error when I call my method
// --> System.ArgumentException
// If I call this :
myTextBox = myCollection[8];
// Error in my code
// --> Cannot convert.. UiElement to Controls.TextBox
string myString = myTextBox.Text;
誰でもこれを処理するのを手伝ってくれますか? ありがとう。