1

我想在单元格中设置背景颜色..

就像是:

在此处输入图像描述

所以我有 RGB 颜色和我想要着色的单元格数量。

你可以假设单元格的位置就是我写的。

我的颜色由 RGB 给出:

color = [255 0 0];

我想将它添加到第 10 个单元格中,所以我写了如下内容:

S.cell_data(10) = uicontrol('style','text',...
               'units','pix',...
               'Position',[20 70 80 40],...
               'string',color);

但样式不是“文本”,也不是字符串。

这就是我现在正在尝试的:

S.cell_data(10) = uicontrol('style','text',...
               'units','pix',...
               'Position',[125 70 80 40],...
               'string','fh');

parentColor = get(get(S.cell_data(10), 'parent'), 'color');

set(S.cell_data(num_of_cols+1),'foregroundcolor', [0 0 0], ...
  'backgroundcolor', parentColor);

有人知道吗?

4

1 回答 1

2
blue = 255;
green = 0;
red = 0;

rgb_str = strcat('<HTML><BODY bgcolor = "rgb(', num2str(red), ', ', num2str(green), ', ', num2str(blue), ')">green background</BODY></HTML>');

S.cell_data(10) = uicontrol('Style','pushbutton', 'Position',[20 70 80 40], 'String', {rgb_str});
于 2012-10-16T17:46:24.510 回答