回复 1楼suntongowen的帖子
你好。
为了帮助你解决问题,请问你是CellFactory设置的CheckBox类型还是通过给单元格直接设置CheckBox类型?
如果是直接设置的,就可以直接获取。
比如:
- CheckBox chk = new CheckBox();
- ToolTipService.SetToolTip(chk, "This CheckBox is stored in a grid cell.");
- chk.VerticalAlignment = VerticalAlignment.Center;
- chk.HorizontalAlignment = HorizontalAlignment.Center;
- _fgUnbound[0, 1] = chk;
-
- (_fgUnbound[0, 1] as CheckBox).Background = Brushes.Yellow;
复制代码 |