登录
首页 » 界面开发 » similar to the management of resources, with a wide range of splitting the small...

similar to the management of resources, with a wide range of splitting the small...

于 2022-12-02 发布 文件大小:506.11 kB
0 54
下载积分: 2 下载次数: 1

代码说明:

类似于资源管理器的,具有多个切分窗口的小程序,可以播放音视频文件-similar to the management of resources, with a wide range of splitting the small window procedure that can play audio and video files

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 一个用DELPHI编写的程序,很有个性.另有代码
    一个用DELPHI编写的程序,很有个性.另有代码-a prepared using DELPHI procedures personality. Another source
    2022-03-06 07:55:50下载
    积分:1
  • This is the source code to write VC industrial controls, can be directly applied...
    这是VC 写的源码工业控件,可直接用于工控显示效果相当好,绝对不亚于世纪飞扬的控件-This is the source code to write VC industrial controls, can be directly applied to industrial display very good, absolutely no less than a century, dust control
    2023-07-08 01:40:04下载
    积分:1
  • 一个网格报表显示源代码,实现报表编辑,排序,显示等,功能强大,直接添加到源程序中即可使用。...
    一个网格报表显示源代码,实现报表编辑,排序,显示等,功能强大,直接添加到源程序中即可使用。-a grid statements show the source code to achieve statements editing, sorting, display, powerful, directly added to the source can be used.
    2023-01-27 03:30:04下载
    积分:1
  • Autoit Gui to be used for system administrators
    Autoit Gui to be used for system administrators
    2022-05-28 04:04:19下载
    积分:1
  • 城市切换
    资源描述城市切换源代码,两件事都放假额我放假了; 了快速的反击了减肥离开佛挡杀佛立刻就离开对方立刻让开幕式独立开发离开的借口会计分录快疯了当时的快乐法兰克福。
    2022-08-11 09:07:06下载
    积分:1
  • Duilib窗体增加阴影效果
    应用背景用于在Duilib界面库产生的窗体周围添加阴影效果关键技术1. 在要添加阴影效果的窗体类中包含WndShadow的头文件,并创建对应类型的成员变量m_WndShadow。 2. 在WinMain处添加初始化 // Initiation of the shadow CWndShadow::Initialize(hInstance); 3. 窗体OnCreate中设置 LRESULT OnCreate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { LONG styleValue = ::GetWindowLong(*this, GWL_STYLE); styleValue &= ~WS_CAPTION; ::SetWindowLong(*this, GWL_STYLE, styleValue | WS_CLIPSIBLINGS | WS_CLIPCHILDREN); m_WndShadow.Create(m_hWnd); m_WndShadow.SetSize(4); m_WndShadow.SetPosition(0, 0); //blablabla.... return 0; } 说明:此处为了更清除的看到窗体边框阴影效果,我将调用的地方原来的m_WndShadow.SetSize(4);改为 了m_WndShadow.SetSize(15);正常情况下,Size设置为4的效果即可。
    2022-06-18 09:40:40下载
    积分:1
  • testtestetstet
    测试法DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD测试法DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
    2022-01-26 00:51:00下载
    积分:1
  • 自适应屏幕程序(基于LabVIEW
    自适应屏幕程序(基于LabVIEW开发),自动根据你设定的屏幕分辩率,运行的时候自动调整界面的尺寸。满足用户接口需要。界面友好。希望对LabVIEW爱好者有所启发。
    2022-06-20 15:35:18下载
    积分:1
  • delphi绘图工具附带源码
    delphi绘图工具附带源码, 可以绘制不同的图像图形,可以保存为独立文件,图形图像可以改变大小. 用到了FlatStyle空间, AAfont空间. 还有ruler控件;
    2023-05-09 23:15:04下载
    积分:1
  • Display a Web Page in a Plain C Win32 Application: There are numerous examples...
    Display a Web Page in a Plain C Win32 Application: There are numerous examples that demonstrate how to embed Internet Explorer in your own window. But these examples typically use Microsoft Foundation Classes (MFC), .NET, C#, or at least the Windows Template Library (WTL) because those frameworks have pre-fabricated "wrappers" to easily give you an "HTML control" to embed in your window. If you re trying to use plain C, without MFC, WTL, .NET, C#, or even any C++ code at all, then there is a dirth of examples and information how to deal with OLE/COM objects such as IE s IWebBrowser2. Here is an article and working example in C to specifically show you what you need to do in order to embed IE in your own window, and more generally, show you how to interact with OLE/COM objects and create your own objects in plain C.
    2022-03-02 15:03:00下载
    积分:1
  • 696518资源总数
  • 104225会员总数
  • 32今日下载