登录
首页 » C# » VISTA样式的按钮

VISTA样式的按钮

于 2020-10-15 发布
0 76
下载积分: 1 下载次数: 0

代码说明:

说明:  VISTA样式的按钮 - Winform(VISTA style button - Winform)

文件列表:

VistaButton\AssemblyInfo.cs, 2426 , 2007-06-23
VistaButton\bin\Debug\Documentation.xml, 8806 , 2011-03-19
VistaButton\bin\Debug\VistaButton.exe, 135168 , 2011-03-19
VistaButton\bin\Debug\VistaButton.pdb, 42496 , 2011-03-19
VistaButton\bin\Debug\VistaButton.vshost.exe, 5632 , 2005-12-08
VistaButton\Form1.cs, 9748 , 2011-03-19
VistaButton\Form1.resx, 153783 , 2011-03-19
VistaButton\Form2.cs, 343 , 2011-03-19
VistaButton\Form2.Designer.cs, 2965 , 2011-03-19
VistaButton\Form2.resx, 5814 , 2011-03-19
VistaButton\obj\Debug\VistaButton.csproj.GenerateResource.Cache, 891 , 2011-03-19
VistaButton\obj\Debug\VistaButton.exe, 135168 , 2011-03-19
VistaButton\obj\Debug\VistaButton.pdb, 42496 , 2011-03-19
VistaButton\obj\Debug\VistaButtonTest.Form1.resources, 99204 , 2011-03-19
VistaButton\obj\Debug\VistaButtonTest.Form2.resources, 180 , 2011-03-19
VistaButton\obj\Debug\VistaButtonTest.VistaButton.resources, 2937 , 2011-03-19
VistaButton\obj\VistaButton.csproj.FileListAbsolute.txt, 957 , 2011-03-19
VistaButton\UpgradeLog.XML, 1052 , 2011-03-19
VistaButton\VistaButton.cs, 21915 , 2007-06-25
VistaButton\VistaButton.csproj, 4625 , 2011-03-19
VistaButton\VistaButton.csproj.user, 2082 , 2011-03-19
VistaButton\VistaButton.resx, 6440 , 2007-06-23
VistaButton\VistaButton.sln, 905 , 2011-03-19
VistaButton\VistaButton.suo, 10752 , 2007-06-25
VistaButton\obj\Debug\TempPE, 0 , 2011-03-19
VistaButton\bin\Debug, 0 , 2011-03-19
VistaButton\obj\Debug, 0 , 2011-03-19
VistaButton\bin, 0 , 2011-03-19
VistaButton\obj, 0 , 2011-03-19
VistaButton, 0 , 2011-03-19

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

发表评论

0 个回复

  • 4764
    网页表单自动提交源码,程序结合易语言扩展界面支持库,实现IE类和网页类的面向对象应用,可以取得网页的基本信息源码。(Automatically submitted web form source code , the program combined with easy language support library expansion interface , object-oriented classes and web applications like IE , you can get basic information about the source page .)
    2016-07-29 11:06:37下载
    积分:1
  • 创建
    说明:  1 程序开发步骤 (1) 打开vc,选择菜单项file->new,选择projects选项卡并建立一个名为"process"的win32 console applicatoin工程;创建时注意指定创建该工程的目录; (2) 在工程中创建源文件"process.cpp":选择菜单项project->add to project->files,在选择框中输入自己想要创建的文件名,这里是"process.cpp";接下来询问是否创建新文件时回答"yes";然后通过Workspace->FileView->Source Files打开该文件(同上一试验); (3) 通过调用菜单命令项build->build all进行编译连接,可以在指定的工程目录下得到debug->process.exe程序;再把给定的launchset.txt文件存入该debug目录下,就可以在控制台下进入该目录以launchset.txt为参数运行程序,命令行为:process launchset.txt;要强调的是,在launchset.txt中指定的应用程序路径要正确,否则建立新的进程时会出错,这时需要对照系统的实际情况改动所给的参数文件。 2 补充说明 这里仅仅给出了编译结果和源程序,没有所创建工程的其他文件。(a program development steps (a) to open vc, select menu item file-gt; New, tab to choose projects and the establishment of a "process" of win32 console applicatoin works; Attention to create designated to create the directory of the project; (2) establish a project document "process.cpp" : Select menu item project-gt; add to project-gt; files, the choice of their own box to create the file name, here is the "process.cpp"; the next question asks whether the creation of new documents to answer "yes"; then Workspace- gt; FileView- gt; Source Files open the document (ibid. a pilot); (3) Order by calling menu items build-gt; build compile all connected, in the specific project directory under debug- gt; process. exe; then to the launchset.txt documents)
    2005-11-04 12:45:13下载
    积分:1
  • 116155
    断开指定会话源码,例程程序结合易语言扩展界面支持库,调用API函数实现断开指定会话。(Disconnecting the session source , routine program expansion interface combined with easy language support library , call the API functions to achieve the specified session is disconnected .)
    2016-06-16 17:13:32下载
    积分:1
  • ZNodes
    qt中提供了QGphicsView,QGraphicsScene,QGraphicsItem,QGraphicsPixmapItem是QGraphicsItem的子类 分辨创建它们的实例:view,scene,item,然后通过各自的方法scene->addItem(item);view->setScene(scene);就可以达到类似下图的效果,想要进一步定制,则要继承QGraphicsItem或QGraphicsPixmapItem,然后重写paint()、boundingRect()等方法,此外如果还想要获取鼠标事件,重写mousePressEvent等事件就好了,注意,一旦重写了mousePressEvent方法,就以为了qt不会再自动处理item的任何press事件了,可以在你重写的mousePressEvent方法中最后添加QGraphicsItem::mousePressEvent(event);解决这个问题,就是说你获取到了鼠标事件,但是依然让qt处理这个鼠标事件。(QGphics View, QGraphics Scene, QGraphics Item and QGraphics PixmapItem are provided in qt. They are subclasses of QGraphics Item. Resolve the instances of creating them: view, scene, item, and then use their respective methods scene - > addItem (item); view - > setScene (scene); you can achieve the effect similar to the figure below. If you want to further customize, you need to inherit QGraphics Item or QGraphics Pixmap Item, and then rewrite paint (), boundingRect () and other methods, and if you want to do so. If you want to get mouse events, rewrite events like mousePressEvent. Note that once you rewrite the mousePressEvent method, you think that QT will no longer automatically handle any press events of item. You can finally add QGraphics Item:: mousePressEvent (event) to your rewritten mousePressEvent method to solve this problem. That is, you get the mouse event, but still let QT handle the mouse event.)
    2020-06-16 20:20:01下载
    积分:1
  • TabControlEX
    一个TabControl控件,比net自带的要方便很多!有源代码!(A TabControl control over the net comes a lot easier! Source code!)
    2013-11-22 00:30:36下载
    积分:1
  • SKinPP
    skin++ 示例源代码及其可执行文件,很好用的皮肤控件(skin++ code)
    2011-10-12 16:29:26下载
    积分:1
  • PyQT5PlotDynamicCurve
    使用PyQT5结合Matplotlib绘制动态的曲线(Drawing dynamic curves with PyQT5 and Matplotlib)
    2018-11-20 11:30:42下载
    积分:1
  • SplashWnd
    splashwnd 窗口开始画面设置,主要针对VS2010的特定设置(Splashwnd )
    2015-01-30 16:58:03下载
    积分:1
  • 0831836
    一个简单的绘图程序,绘出清晰的图案,并且可保存,打开,标题随所打开的内容而改变,()
    2018-04-27 12:52:18下载
    积分:1
  • LgxGrid
    LgxGrid是一款功能强大的表格(报表)控件,使用这个控件,你可以轻轻松松地为你的应用程序创建各种表格用户界面,大大加快你的开发效率,更好地满足你的客户需求。 无论是使用LgxGrid控件开发传统的Windows应用程序,还是开发基于B/S的Web应用程序,都会给你带来意想不到的惊喜! 最新版本新增公式和处理大量数据的功能,打印功能更为完善。 Lgxgrid控件内含详尽的中文帮助文档和C#、VC、VB、ASP.net例程,无论你是初学者还是资深的程序员,Lgxgrid控件都会让你得心应手! (LgxGrid is a powerful form (report) controls, use this control, you can easily serve your application user interface to create various forms, greatly speed up your development efficiency, to better meet the needs of your customers .)
    2013-10-17 11:34:37下载
    积分:1
  • 696522资源总数
  • 104040会员总数
  • 35今日下载