问题标签 [borderless]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c++ - 创建无边框 DirectShow 窗口
我指的是这个使用此处提供的 DirectShow 示例的简单视频播放器。
代码运行并构建,但是我需要使视频播放器窗口无边界。
我找不到要在CoCreateInstance函数或CoInitialize函数中设置的参数,我可以将其设置为使窗口无边框。
这是我的完整代码供参考:
为了实现这一点,我需要添加哪些额外的代码?
qt - QML:如何在 TreeView 和 TableView 禁用边框?
我可以删除这些元素的背景和交替颜色,但我找不到如何删除它周围的边框。可能吗?
c# - 如何使自定义标题栏上的无边框表单可拖动?
我使用 c# 创建了一个无边框表单,但可以使自定义标题栏可移动,因此我在互联网上搜索并找到了以下代码:
应用此代码后,可以在除标题栏外的每一英寸表单中单击并拖动我的表单。
c# - CefSharp 中的可拖动无边框窗口
我想在一些 HTML 元素上实现带有拖动逻辑的无边框窗口。我找到了一些工作示例(例如Chrome 的无框窗口),这就是我尝试过的:
然后,在 C# 代码中,我实现了 IDragHandler 类:
方法 OnDraggableRegionsChanged 在开始时触发一次,当我拖动元素“标题区域”的某些文本时触发 OnDragEnter。但我不确定下一步该怎么做才能让我的窗口移动?
更新。正如评论中提到的,CefTestApp支持此拖动功能。在源代码中,我们有从 DragHandler 调用的方法 OnSetDraggableRegions:
我还是不太明白,关于可拖动区域(在启动时只触发一次)的确切信息如何帮助移动窗口?有人可以向我解释这个逻辑或提供与此代码等效的 C# 吗?
c++ - Borderless window with Aero Snap too large in maximized state
I am trying to make a borderless window in Qt5.6.0, with aero-snap functionality. Everything works, except when I maximize the window : it is too big.
My screen resolution is 2560x1440
, so the window should be sized 2560x1400
(40 Pixels for the Taskbar), but in the WM_SIZE
message, the new size is 2576x1416
.
So the window is exactly 8 pixels too big in every direction.
This also means that the window is not aligned in the top-left corner, it is exactly 8 pixels off-screen in both directions.
I can't find a solution for this problem, everything I have tried doesn't work and causes bugs.
The only thing that fixes this is to remove the WS_CAPTION
and WS_THICKFRAME
styles, but then I lose the areo snap functionality.
I somehow have to tell Qt or DWM to make the window 16 pixels smaller and move it 8 pixels right, and bottom. Does anybody have an idea on how to do that?
html - bootstrap3 table-bordered 无外边框
我想使用带有边框的 bootstrap 3 表格,例如 using class="table table-bordered"
,这样我将在单元格之间设置边框,但我不希望表格外部有任何边框。
thead
我尝试了以下方法,它似乎对侧面效果很好,但考虑到它tfoot
是可选元素,我想不出一种很好的方法来处理潜在的顶部和底部边框。我希望能做出一些强大的东西来解决这些情况,最大限度地提高再利用潜力。
这里有一个不错的 CSS 解决方案吗?