|
たくさんのサンプルありがとうございます。
リストボックスの処理は自作して解決しました。
> 自分の目的は、MSAgentにキャラクタ登録を自動で呼び出せる方法を探しています。
private void toolStripLabel2_Click(object sender, EventArgs e)
{
//ラベルボックスを変更させた時に、リストを変更。
if (toolStripLabel2.Text == "MSAgent")
{
toolStripLabel2.Text = "Voice";
//既存のリストデータを削除してみた。
toolStripComboBoxSelectVoice.Items.Clear();
}
else
{
toolStripLabel2.Text = "MSAgent";
string[] Agent1 = new string[4];
string AgentList;
Agent1[0] = "Genie";
Agent1[1] = "Merlin";
Agent1[2] = "Peedy";
Agent1[3] = "Robby";
//リストアイデム追加処理
for(int i=0; i<4; ++i)
{
AgentList = Agent1[i];
toolStripComboBoxSelectVoice.Items.Add(AgentList);
}
}
}
ご教授ありがとうございます。
また、わからなくなったらご教授お願いします。
|