datagrid之增加与删除

思维导图:

 一.增加

1.在usermeasage写一个新增按钮:

<a id="btn-add" href="#" class="easyui-linkbutton" data-options="iconCls:'icon-search'">新增</a>

2.添加点击事件弹出窗体:Book.js

$("#btn-add").click(function(){
		//clear清空数据
		$('#ff').form('clear');
		$("#dd").dialog("open");
	});
}) 

展示效果:

 

3.提交表单

3.1(在后台写方法)BookDao:

public void add(Book book) throws Exception {
		super.executeUpdate("insert into t_mvc_book values(?,?,?)",book,new String[] {"bid","bname","price"});
	}

问题:因为bid在数据中没有设置标识列自增长

解决:add点击事件中添加book

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在WPF中,可以通过以下步骤为DataGrid增加右键菜单: 1. 首先,在XAML文件中定义一个ContextMenu,用于作为右键菜单的内容。可以在Window或者UserControl的资源部分定义ContextMenu,例如: ```xaml <Window.Resources> <ContextMenu x:Key="DataGridContextMenu"> <MenuItem Header="编辑" Click="EditMenuItem_Click"/> <MenuItem Header="删除" Click="DeleteMenuItem_Click"/> </ContextMenu> </Window.Resources> ``` 2. 然后,在DataGrid的样式中,使用EventSetter来为DataGrid的PreviewMouseRightButtonDown事件添加处理程序。在处理程序中,将ContextMenu设置为右键菜单,并设置菜单的PlacementTarget为DataGrid,以确保菜单与DataGrid关联。例如: ```xaml <DataGrid> <DataGrid.RowStyle> <Style TargetType="DataGridRow"> <EventSetter Event="PreviewMouseRightButtonDown" Handler="DataGridRow_PreviewMouseRightButtonDown"/> </Style> </DataGrid.RowStyle> </DataGrid> ``` 3. 最后,在代码文件中实现事件处理程序,将ContextMenu设置为右键菜单,并将菜单的PlacementTarget设置为DataGrid。例如: ```csharp private void DataGridRow_PreviewMouseRightButtonDown(object sender, MouseButtonEventArgs e) { DataGridRow row = sender as DataGridRow; if (row != null) { DataGrid dataGrid = FindVisualParent<DataGrid>(row); if (dataGrid != null) { ContextMenu contextMenu = dataGrid.Resources["DataGridContextMenu"] as ContextMenu; if (contextMenu != null) { contextMenu.PlacementTarget = dataGrid; contextMenu.IsOpen = true; e.Handled = true; } } } } private static T FindVisualParent<T>(UIElement element) where T : UIElement { UIElement parent = element; while (parent != null) { T foundElement = parent as T; if (foundElement != null) { return foundElement; } parent = VisualTreeHelper.GetParent(parent) as UIElement; } return null; } ``` 这样,当在DataGrid的行上右键点击时,就会显示出定义的右键菜单。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值