Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - byronhaochen

#1
Help requests / About Gaussian Blur...
13 January 2025, 05:24:01
Hi :) , how to use Gaussian blur effect in the background of Panel?
#2
Hi, how to implement dynamic image support for button and picture? :)
#3
I use childWindow as the base class to make a custom widget, but the background becomes invisible after drawing. What is the reason for this?  :)
2024-12-26 13-32-29-76.jpg
NewProjectWindow::NewProjectWindow(const char* typeName, bool initRenderer) :
ChildWindow(typeName, false)
{
if (initRenderer)
{
m_renderer = aurora::makeCopied<NewProjectWindowRenderer>();
setRenderer(Theme::getDefault()->getRendererNoThrow(m_type));
}
setTitleButtons(ChildWindow::TitleButton::None);
setTextSize(getGlobalTextSize());

setClientSize({ 450, 350 });
init();
}