Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为画布添加自定义背景颜色
如何向 Oracle 表单开发人员添加自定义颜色
右键单击画布,然后选择“属性调色板”:
然后,根据需要设置属性“背景”(例如,您可以使用 sintaxr70g85b85或red)。
r70g85b85
red
myGrayBack使用来自工具栏的您想要的背景颜色(可能是gray4 )代码定义一个 Visual 属性。
myGrayBack
gray4
在WHEN-NEW-FORM-INSTANCE或PRE-FORM触发器的代码中,添加以下内容:
WHEN-NEW-FORM-INSTANCE
PRE-FORM
SET_CANVAS_PROPERTY('CANVAS1', visual_attribute, 'myGrayBack');
打开 Canvas 的 Property Palette 窗口并将其“Background Color”属性设置为某种颜色。