⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 faq.tex

📁 Wxpython Implemented on Windows CE, Source code
💻 TEX
字号:
\section{FAQ}\label{faq}

\subsection{A row of all non-fixed bars don't position properly}

By Julian Smart.

I found that if I added all non-fixed bars, bars would overlap.
This seems to be because the proportional resizing doesn't work
before the window is laid out. I worked around this by setting
pane sizes {\it before} the bars are added:

\begin{verbatim}
    wxSize sz = GetClientSize();

    // Set width for panes to help it do the calculations
    int i;
    for (i = 0; i < 2; i++)
    {
        cbDockPane& pane = * (m_frameLayout->GetPane(i));
        pane.SetPaneWidth(sz.x);
    }
\end{verbatim}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -