sunnyzls 2020-07-28 17:03 采纳率: 100%
浏览 203
已采纳

在WPF的Page中添加的数据源控件DataGrid不显示数据

在使用.Net Framework的WPF创建桌面应用时,从现有数据库向项目中添加了数据源。

如果将数据源对应的控件添加到窗体(Window)上,那么数据库中的数据可以正常显示。

但是如果将数据源对应的控件添加到页面(Page)上,那么数据库中的数据就显示不出来。

程序中没有添加C#代码。
下面是MainWindow.xaml的代码:

<Window x:Class="DefenseFramework.MainWindow"
        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:DefenseFramework"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800" Loaded="Window_Loaded">
    <Window.Resources>
        <local:DataSet1 x:Key="dataSet1"/>
        <CollectionViewSource x:Key="questionViewSource" Source="{Binding Question, Source={StaticResource dataSet1}}"/>
    </Window.Resources>
    <Grid DataContext="{StaticResource questionViewSource}">
        <Grid.RowDefinitions>
            <RowDefinition Height="249*"/>
            <RowDefinition Height="170*"/>
        </Grid.RowDefinitions>
        <Frame Source="Page1.xaml" Grid.RowSpan="1"></Frame>
        <DataGrid x:Name="questionDataGrid" AutoGenerateColumns="False" EnableRowVirtualization="True" ItemsSource="{Binding}" RowDetailsVisibilityMode="VisibleWhenSelected" Grid.Row="1">
            <DataGrid.Columns>
                <DataGridTextColumn x:Name="idColumn" Binding="{Binding Id}" Header="Id" Width="SizeToHeader"/>
                <DataGridTextColumn x:Name="askColumn" Binding="{Binding Ask}" Header="Ask" Width="SizeToHeader"/>
                <DataGridTextColumn x:Name="answerColumn" Binding="{Binding Answer}" Header="Answer" Width="SizeToHeader"/>
                <DataGridCheckBoxColumn x:Name="testedColumn" Binding="{Binding Tested}" Header="Tested" Width="SizeToHeader"/>
                <DataGridCheckBoxColumn x:Name="learnedColumn" Binding="{Binding Learned}" Header="Learned" Width="SizeToHeader"/>
            </DataGrid.Columns>
        </DataGrid>

    </Grid>
</Window>

下面是Page1.xaml的代码:

<Page x:Class="DefenseFramework.Page1"
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
      xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
      xmlns:local="clr-namespace:DefenseFramework"
      mc:Ignorable="d" 
      d:DesignHeight="450" d:DesignWidth="800"
      Title="Page1">
    <Page.Resources>
        <local:DataSet1 x:Key="dataSet1"/>
        <CollectionViewSource x:Key="questionViewSource" Source="{Binding Question, Source={StaticResource dataSet1}}"/>
    </Page.Resources>

    <Grid DataContext="{StaticResource questionViewSource}">
        <DataGrid x:Name="questionDataGrid" AutoGenerateColumns="False" EnableRowVirtualization="True" ItemsSource="{Binding}" Margin="10" RowDetailsVisibilityMode="VisibleWhenSelected">
            <DataGrid.Columns>
                <DataGridTextColumn x:Name="idColumn" Binding="{Binding Id}" Header="Id" Width="SizeToHeader"/>
                <DataGridTextColumn x:Name="askColumn" Binding="{Binding Ask}" Header="Ask" Width="SizeToHeader"/>
                <DataGridTextColumn x:Name="answerColumn" Binding="{Binding Answer}" Header="Answer" Width="SizeToHeader"/>
                <DataGridCheckBoxColumn x:Name="testedColumn" Binding="{Binding Tested}" Header="Tested" Width="SizeToHeader"/>
                <DataGridCheckBoxColumn x:Name="learnedColumn" Binding="{Binding Learned}" Header="Learned" Width="SizeToHeader"/>
            </DataGrid.Columns>
        </DataGrid>

    </Grid>
</Page>

这是程序运行的截图。
图片说明

展开全部

  • 写回答

2条回答 默认 最新

  • dabocaiqq 2020-07-29 04:31
    关注
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 代写uni代码,app唤醒
  • ¥15 全志t113i启动qt应用程序提示internal error
  • ¥15 ensp可以看看嘛.
  • ¥80 51单片机C语言代码解决单片机为AT89C52是清翔单片机
  • ¥60 优博讯DT50高通安卓11系统刷完机自动进去fastboot模式
  • ¥15 minist数字识别
  • ¥15 在安装gym库的pygame时遇到问题,不知道如何解决
  • ¥20 uniapp中的webview 使用的是本地的vue页面,在模拟器上显示无法打开
  • ¥15 网上下载的3DMAX模型,不显示贴图怎么办
  • ¥15 关于#stm32#的问题:寻找一块开发版,作为智能化割草机的控制模块和树莓派主板相连,要求:最低可控制 3 个电机(两个驱动电机,1 个割草电机),其次可以与树莓派主板相连电机照片如下:
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部