Starts the drag and drop operation. The data.
(DragData data)
| 175 | /// </summary> |
| 176 | /// <param name="data">The data.</param> |
| 177 | public void DoDragDrop(DragData data) |
| 178 | { |
| 179 | if (data is DragDataText text) |
| 180 | DoDragDrop(text.Text); |
| 181 | else |
| 182 | throw new NotImplementedException("Only DragDataText drag and drop is supported."); |
| 183 | } |
| 184 | |
| 185 | private Window() |
| 186 | { |
nothing calls this directly
no test coverage detected