如何从具有联接表的数据库动态创建WPF窗口?

时间:2019-04-22 15:55:27

标签: c# wpf

我正在尝试制作自定义展示板来帮助管理我们的客户室。

表1名为Rooms [RoomID, RoomNumber, RoomDescription, ADA, RoomStatus]

表2名为Beds [BedID, BedNumber, RoomID, BedEnabled]

表3名为Clients [ClientID, BedID, RoomID and other fields for client information]

与一个房间关联的床可以超过1张。例如101室有2张床,然后我们可以将2位客户分配到101室。

我一直在尝试使用Grid和StackPanel列出所有房间。然后在每个房间列表中列出所有床,然后为每个床(如果分配了客户)将使用TextBlock显示客户信息。我正在收集这不是我可以直接在xaml中执行的操作,但是可能需要在循环后面执行一些代码?

<Window x:Class="BoardDisplay.Window1"        
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:BoardDisplay"
        mc:Ignorable="d"
        Title="Window1" Height="450" Width="800" Loaded="Window_Loaded">
    <Window.Resources>
        <local:Room_ManagerDataSet x:Key="room_ManagerDataSet"/>
        <CollectionViewSource x:Key="roomsViewSource" Source="{Binding Rooms, Source={StaticResource room_ManagerDataSet}}"/>
        <CollectionViewSource x:Key="bedsViewSource" Source="{Binding Beds, Source={StaticResource room_ManagerDataSet}}"/>
    </Window.Resources>
    <Grid Margin="10">
        <ItemsControl ItemsSource="{Binding Source={StaticResource roomsViewSource}}">
            <ItemsControl.ItemsPanel>
                <ItemsPanelTemplate>
                    <WrapPanel />
                </ItemsPanelTemplate>
            </ItemsControl.ItemsPanel>
            <ItemsControl.ItemTemplate>
                <DataTemplate>
                    <TextBlock Text="{Binding RoomNumber}" Margin="0,0,5,5">
                        <Grid>
                            <ItemsControl ItemsSource="{Binding Source={StaticResource bedsViewSource}}">
                                <ItemsControl.ItemsPanel>
                                    <ItemsPanelTemplate>
                                        <StackPanel/>
                                    </ItemsPanelTemplate>
                                </ItemsControl.ItemsPanel>
                                <ItemsControl.ItemTemplate>
                                    <DataTemplate>
                                        <TextBlock Text="{Binding BedNumber}"/>
                                    </DataTemplate>
                                </ItemsControl.ItemTemplate>
                            </ItemsControl>
                        </Grid>
                    </TextBlock>
                </DataTemplate>
            </ItemsControl.ItemTemplate>
        </ItemsControl>
    </Grid>
</Window>

1 个答案:

答案 0 :(得分:1)

如果您进行权限绑定,我认为您可能会遇到双向冲突,那么您应该像这样使用updatesourcetrigger

https://stackoverflow.com/a/22253816/914284

Text="{Binding Path=SelectedCollectionDevice.BaudRate, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}

此外,您可以使用包装器