我在 WPF 中使用 Datagrid 来显示从列表中的 LINQ-SQL 表达式返回的用户行:
private void admin_tab_GotFocus(object sender, RoutedEventArgs e)
{
if (dbMethods.CheckDatabaseConnection())
{
using (PubsDataContext db = new PubsDataContext())
{
var Allusers = new List<Application_User>(from users in db.Application_Users
select users);
users_DataGrid.DataContext = Allusers;
}
}
}
用户加载得很好,所有信息都完好无损。但是,当左键单击行时,该行不会被选中,并且似乎没有传递任何事件。我添加了一个 MouseDown 事件,只能捕获右键单击,但不能捕获左键单击。
数据网格的 XAML 是:
<DataGrid AutoGenerateColumns="True" Margin="6,6,6,215" Name="users_DataGrid"
CanUserAddRows="True" ItemsSource="{Binding}" Height="286" Width="246"
MouseLeftButtonDown="users_DataGrid_MouseLeftButtonDown" MouseDown="users_DataGrid_MouseDown"/>
这是我在不同窗口(XAML 和 C#)上的单独数据网格的相同代码。这是用于比较的示例:
XAML
<DataGrid AutoGenerateColumns="True" Margin="1,136,1,207" Name="studentLearningExperiences_DataGrid" ItemsSource="{Binding}"
HorizontalScrollBarVisibility="Visible" VerticalScrollBarVisibility="Visible" CanUserAddRows="True">
<DataGrid.ContextMenu>
<ContextMenu Name="studentLearningExperiences_ContextMenu">
<!--HACK BUG - currently does not work with the button click <MenuItem Header="Save" Click="learningExperienceSave_BTN_Click" /> -->
<MenuItem Header="Delete" Click="Delete_MenuItem_Click" />
</ContextMenu>
</DataGrid.ContextMenu>
</DataGrid>
C#
public void LoadStudentLearningExperiences()
{
if (dbMethods.CheckDatabaseConnection())
{
using (PubsDataContext db = new PubsDataContext())
{
var completionList = new List<Learning_Experience>(from s in db.Learning_Experiences
where s.Student_ID == student.Student_ID
select s);
studentLearningExperiences_DataGrid.DataContext = completionList;
}
}
}
任何人都可以找到我是否有错误、遗漏了什么或根据他们的经验提供建议吗?我引用了此链接无法编辑单元格,我想知道我的 SQL Server 表是否正在创建 TextBlocks 而不是 TexBoxes,但 SQL Server 中的表也看起来相同。