ColorPicker
#
Examples#
Basicexport function App() { return ( <Window> <DemoLayout> <Button text="Button" onClick={async (sender) => { const context = getAppContext(); const window = context.getWindow();
const commonUi = window.GetCommonUi(); const result = await commonUi.PickColor( new Vec4(255, 255, 255, 255), false, ); sender.SetTextColor(result); }} ></Button> </DemoLayout> </Window> );}
Get selected color and use it to set color of button text:
#
APIexport interface ICommonUi { PickColor(vColor: Vec4, bAllowAlpha: boolean): Promise<Vec4>;}
In the above example, we set vColor
to white(new Vec4(255, 255, 255, 255)
):
If we want to use the last used color as default, modify code in this way:
export function App() { const [color, setColor] = useState(new Vec4(255, 255, 255, 255));
return ( <Window> <DemoLayout> <Button text="Button" onClick={async (sender) => { const context = getAppContext(); const window = context.getWindow();
const commonUi = window.GetCommonUi(); const result = await commonUi.PickColor(color, false); sender.SetTextColor(result); setColor(result); }} ></Button> </DemoLayout> </Window> );}
If bAllowAlpha
is false, returned alpha of color is always 255, if it's true, we can select not only RGB, bug also alpha channel.