gudianxiaoshuo.com

Results 18 issues of gudianxiaoshuo.com

npm ERR! Unexpected end of JSON input while parsing near '...aR1IfLrlhAiQ0IhD8JsoB' npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\pc\AppData\Roaming\npm-cache\_logs\2019-10-14T03_41_52_267Z-debug.log

复现: 西沃 触摸屏 无法通过触摸方式 移动标题栏

使用时,发现一个小BUG ![image](https://user-images.githubusercontent.com/16250519/90585494-945d1c80-e207-11ea-96b1-6f8da538112c.png) 效果如下: 可以看到 上下边界线 被里面的子项遮挡住了 ![image](https://user-images.githubusercontent.com/16250519/90585614-de460280-e207-11ea-95ad-d5b95fb05c1b.png) 我是在listbox外面又加了个BOX ,近似实现边界线的 ![image](https://user-images.githubusercontent.com/16250519/90585710-0afa1a00-e208-11ea-9bc8-a0e472f007a8.png)

bug
to be confirmed

//当设置它为 selected="true" 无效 //当设置它为 selected="true" 无效 代码中: bool Control::OnApplyAttributeList(const std::wstring& strReceiver, const std::wstring& strList, EventArgs* eventArgs) { Control* pReceiverControl; if (strReceiver.substr(0, 2) == L".\\" || strReceiver.substr(0, 2) == L"./") {...

若将窗口设置为 shadowattached="true" 这个box 设置了一个透明图作为背景 但是 整体呈现的不是透明图,而是透明部分成了黑色 ![image](https://user-images.githubusercontent.com/16250519/88629088-6a6d7a00-d0e1-11ea-93e0-850b5e30c57f.png)

这个CEF文字显示有点模糊 不如真实浏览器真的问题 应该怎么解决呢

` ` 如上代码 宽高为160 90 时 滚动条可以显示 但是当把图片宽高 调大 比如 320 180时, 滚动条就不可见了 不知是什么原因

help wanted

想做CEF窗口子类化,截取鼠标进入进出消息 但是发现 HWND CefControlBase::GetCefHandle() const { if (browser_handler_.get() && browser_handler_->GetBrowserHost().get()) return browser_handler_->GetBrowserHost()->GetWindowHandle(); return NULL; } 这种方式获得的句柄 和SPY++得到的句柄不一样 请问,为什么不一样呢 如何获得正确的CEF真屏窗口句柄呢

想判断鼠标是否窗口内 窗口内的话 显示某些按钮 窗口外的话 隐藏某些按钮 使用了AttachBubbledEvent 但是, 有子控件的话 子控件的进入离开 会影响判断 而且 有些布局 好像也没捕获到 分别使用了 m_pRoot->AttachBubbledEvent(ui::kEventMouseEnter, [this](ui::EventArgs* param){ pHoverForm_->ShowBackBtn(true); return true; }); m_pRoot->AttachBubbledEvent(ui::kEventMouseLeave, [this](ui::EventArgs* param){ pHoverForm_->ShowBackBtn(false); return true; }); 没成功,然后 有测试了...