kitepad
kitepad
It's work after I rebuild mdview.exe using quark.
Can we show current active tab's folder name as Tree root? Otherwise, I have to move my eyes to title bar to find current folder name. In my daily works,...
1. I think UI will be better if have a caption bar with close button when ribbon bar is minimized. And I can close file tree quickly, otherwise I have...
I know that. But it will disappeared when I hide whole ribbon (modified source code to hide ribbon).
void CMainWindow::ShowRibbon(BOOL state) { m_ribbonVisible = state; IPropertyStore* pPropertyStore = NULL; HRESULT hr = m_pRibbon->QueryInterface(__uuidof(IPropertyStore), (void**)&pPropertyStore); if (SUCCEEDED(hr)) { PROPVARIANT propvar; PropVariantInit(&propvar); UIInitPropertyFromBoolean(UI_PKEY_Viewable,m_ribbonVisible,&propvar); hr = pPropertyStore->SetValue(UI_PKEY_Viewable,propvar); pPropertyStore->Commit(); HMENU pSysMenu =...
Actually, to hide ribbon you only need following code: BOOL m_ribbonVisible = FALSE; // TRUE : show ribbon, FALSE: hide ribbon IPropertyStore* pPropertyStore = NULL; HRESULT hr = m_pRibbon->QueryInterface(__uuidof(IPropertyStore), (void**)&pPropertyStore);...
Waiting ........
I know I can hide menu bar and the tool bar. And it is not I want VSCode, I just want to make np3 better.
Hi, You can try to handle NCLBUTTONDOWN to replace default maximize and minimize using MoveWindow to reduce flickering at the top.