xamlには、1行2列のグリッドが含まれるリストボックスがあります。最初の列には名前があり、2番目の列には別のリストボックスがあります...最初のリストボックスは、監視可能なエンクロージャーアイテムのコレクションにバインドされています。Enclosureクラスには、別の監視可能なサーバーのコレクション(別のクラス)があります。これもリストボックスにバインドしようとしています。監視可能なコレクションにアイテムを追加すると、EnclosureIDは正常に機能し、更新されます。ただし、Slistを他のリストボックス内にあるリストボックスにバインドする方法がわかりません。誰かアイデアはありますか?私が使用できる別のアプローチはありますか?
public class Enclosure
{
private string enclosureID; //bound to the first listbox
//I want to bind this below to the second listbox
//There is another class called Server with various properties
public ObservableCollection<Server> Slist = new ObservableCollection<Server>();
public string EnclosureID
{
get { return enclosureID; }
set { enclosureID = value; }
}
}
xamlの場合:
<ListBox x:Name="lb1" ItemsSource="{Binding}" DataContext="{Binding}" ScrollViewer.HorizontalScrollBarVisibility="Disabled">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<TextBlock x:Name="txtEnclosure" Text="{Binding Path=EnclosureID}" Background="Aqua" Grid.Column="0" Grid.Row="0" />
<ListBox x:Name="lbserver" ItemsSource="{Binding Slist}" ScrollViewer.HorizontalScrollBarVisibility="Disabled" Grid.Column="1" Grid.Row="0">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock x:Name="txtServer" Text="{Binding Path=HostnameID}" Background="Beige"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
リストにデータを入力するには、次の方法を使用します。
//Query the database for enclosures and populate the Enclosure observable collection in the Settings class
public void GetEnclosures()
{
bool exception = false;
Enclosure enclosure = new Enclosure();
Server server = new Server();
server.HostnameID = "HEY";
OleDbCommand GetEnclosuresCommand = new OleDbCommand(Settings.GetEnclosuresQuery, Settings.conn);
Settings.conn.Open();
try
{
Settings.myReader = GetEnclosuresCommand.ExecuteReader();//begin reading
}
catch
{
MessageBox.Show("The Enclosure table is currently being used by another application. Please close the table and run this application again.");
Settings.conn.Close();
exception = true;
}
if (!exception)
{
// while there are enteries to retrieve
while (Settings.myReader.Read())
{
enclosure.EnclosureID = Settings.myReader.GetString(0);
enclosure.Slist.Add(server);
Settings.Elist.Add(enclosure);
enclosure = new Enclosure();
server = new Server();
server.HostnameID = "HI";
}
// Close when done reading.
Settings.myReader.Close();
// Close the connection.
Settings.conn.Close();
}
else
{
this.NavigationService.Navigate(new Uri("MainPage.xaml", UriKind.Relative));
}
}