impl.com.pixelduke.window.win32.DWMA_WINDOW_ATTRIBUTE Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fxthemes Show documentation
Show all versions of fxthemes Show documentation
This is a library that contains classes to help in theme development.
package impl.com.pixelduke.window.win32;
public enum DWMA_WINDOW_ATTRIBUTE {
DWMWA_USE_IMMERSIVE_DARK_MODE(20),
DWMWA_BORDER_COLOR(34),
DWMWA_CAPTION_COLOR(35),
DWMWA_TEXT_COLOR(36),
DWMWA_SYSTEMBACKDROP_TYPE(38);
private final int value;
DWMA_WINDOW_ATTRIBUTE(int value) {
this.value = value;
}
public int getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy