Position Control At Cell Of collectionview? #30694
Replies: 2 comments 3 replies
-
Is this entry/textbox in every cell or just the current selected one, so it is draw upon that? |
Beta Was this translation helpful? Give feedback.
-
i want to get the exact x,y position for the current selected cell position in collectionview like datagridview in windows form. (that is x,y, width, height like the rectangle it has top, down, left, right 4 corners. I like to get this 4 corners position exactly) So, can i get that positions? The DataGridView has a GetCellDisplayRectangle method. Just pass it the column and row index, which we'll generally get from the 'e' parameter in a cell-related event handler. Public static void Position_Control_At_Datagridview(DataGridView dgv, Object ctrl)
ComboBox cb= CType(ctl, ComboBox);
} how i GetCellDisplayRectangle in maui collectionView? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
i have a collection view, with a entry/texbox. i want to show the entry/texbox under the current cell of a collection view. the position and height change according to the position and height of current cell.
i want the position and rectangled so that i can set the location and height of my entry/textbox.
please, help me for this problem
Beta Was this translation helpful? Give feedback.
All reactions