简体   繁体   中英

How to disable drag drop row from one datagridview to another?

I have imported "DataGridView" control from Windows form to WPF due to specific reason. There is customized rows in "DataGridView" like first cell is "ComboBox" with dropdown list and others cells are simple "textBoxes" with readonly mode. I have placed two customized "DataGridViews" on same Grid(plz refere snapshot).There is one problem when i select comboBox from cell one from any row of "DataGriView1" and hold any item from comboBox,and dragged onto "DataGriView2" then double entries added. Actually I don't want to allow user to drag drop items from "DataGriView1" to "DataGriView2".

Thanks in advance. 在此输入图像描述

使用DataGridView AllowDrop属性

DataGriView1.AllowDrop = false;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM