公式单元格下显示小图标
在spread控件中,我想扩展让设置有公式的单元格右下角显示一个小红图标或是其它的方式,类似下图的样式,我该如何设置或如何处理呢。回复 1楼qd98zhq的帖子
Cell 可以设置背景图片,看能否满足您的需求:
private void button1_Click(object sender, RoutedEventArgs e)
{
BitmapImage bmp = new BitmapImage(new Uri("../../Untitled.png", UriKind.RelativeOrAbsolute));
ImageBrush ib = new ImageBrush();
ib.ImageSource = bmp;
this.gcspread1.ActiveSheet.Cells.Background = ib;
this.gcspread1.ActiveSheet.Cells.Text = "fdsfds";
}
恩 这也是个方式,非常感谢。:jy74a: 回复 3楼qd98zhq的帖子
不客气,本问题先关闭了。
页:
[1]