ビーンクラス
public partial class IPSFlightPath {
private string nameField;
private string sidField;
private int selectedField;}
メインクラス
1.1.リストボックスの値を設定する
IPSFlightPath[] arrFlightPath = ipsChannel.paths;
foreach (IPSFlightPath flightPath in arrFlightPath)
{
if (flightPath.selected != 0)
{
lbSelected.Items.Add(flightPath.name);
}
}
1.2.リストボックスから値を取得する
string FP = lbSelected.SelectedItem.Value.ToString();
FP を name に設定しただけで、オブジェクトの selectedValue を取得できませんでした。例: row1 show nameField is 'FlightPath1' which contains sidField is '1'.
ご協力いただきありがとうございます。