Back to Dearpygui

Primary Window

docs/source/documentation/primary-window.rst

2.3.1725 B
Original Source

Primary Window

The primary window fills the viewport, resizes with the viewport and remains behind other windows.

A window can be set as the primary window by using the :py:func:set_primary_window <dearpygui.dearpygui.set_primary_window> command using the required True/False allows the window to be set or unset.

.. code-block:: python

import dearpygui.dearpygui as dpg

dpg.create_context()

with dpg.window(tag="Primary Window"):
    dpg.add_text("Hello, world")

dpg.create_viewport(title='Custom Title', width=600, height=200)
dpg.setup_dearpygui()
dpg.show_viewport()
dpg.set_primary_window("Primary Window", True)
dpg.start_dearpygui()
dpg.destroy_context()