Description: 不错的播放器,功能完全,强大!支持视频和MP3文件
运用了,很多winForm中很强的控件:
OpenFileDialog:用于打开文件对话框的 Filter 属性可以控制格式
ContextMenuStrip:鼠标右键菜单 Items 添加右键菜单
MenuStrip:菜单栏
AxWindowsMediaPlayer:媒体播放器 引用与com组件
ListBox:列表
FolderBrowserDialog:用于打开文件夹对话框的-A good player, features a complete, powerful! To support the use of video and MP3 files, and many winForm in a very strong control: OpenFileDialog: Open File dialog box for the Filter property can control the format of ContextMenuStrip: Right Menu Items to add right-click menu MenuStrip: menu bar AxWindowsMediaPlayer: Media Player reference and com components ListBox: List FolderBrowserDialog: Folder dialog box to open the file Platform: |
Size: 259072 |
Author:lin |
Hits:
Description: 菜单和工具栏使用,掌握下拉菜单控件MenuStrip、内容菜单控件ContextMenuStrip、工具栏控件TooStrip和工具栏容器控件TooStripContainer控件的使用。-Menus and toolbars using the drop-down menu to master control MenuStrip, the contents of the menu control ContextMenuStrip, toolbars and toolbar controls TooStrip control TooStripContainer control the use of container. Platform: |
Size: 52224 |
Author:Eliza |
Hits:
Description: C#2008中,ContextMenuStrip右键弹出菜单事件改成左键弹出菜单,弹出菜单定位在按钮左下角,单击右键无效(不弹出菜单)。-C# 2008 in, ContextMenuStrip event into left-right pop-up menu pop-up menu, pop-up menu buttons located on the lower left corner, right-click is invalid (not pop-up menu). Platform: |
Size: 49152 |
Author:乐乐 |
Hits:
Description: C#记事本的详细设计过程,更轻松的设计记事本。
(1)项目的创建。
(2)Windows窗体的创建和使用。
(3)几种对话框的使用。
(4)“ToolStrip”、“ContextMenuStrip”等控件的使用。
(5)鼠标事件以及键盘事件。
(6)窗体的调用。-C# Notepad detailed design process, the design of notebook easier. (1) the creation of the project. (2) Windows Forms to create and use. (3) the use of several dialog boxes. (4) " ToolStrip" , " ContextMenuStrip" the use of such controls. (5) mouse events and keyboard events. (6) form of the call. Platform: |
Size: 2302976 |
Author:aiyu |
Hits:
Description: 详细展示了右键弹出菜单的处理机制,响应事件等,较好地演示了该控件需要注意的一些技巧。-Shows in detail the context menu handling mechanism in response to events, to better demonstrate the need to pay attention to some of the control techniques. Platform: |
Size: 29696 |
Author:于爱清 |
Hits:
Description: 大二寒假在家,应正在做会计工作的家人要求,制作了这么一个方便统计产品信息的软件,力求小巧简单。由于目标客户非常明确,加之本人对会计并不了解,因而不知此产品实用性如何。但可作为C#学习的参考,设计面向对象、XML文件操作、UI设计、ListView、ContextMenuStrip等控件,比较规范。姑且命名为“小小小会计”好了。-Sophomore winter break at home, are doing the accounting work of the family, made such a convenient statistical product information, software, and strive to small and simple. Very clear target customers, in addition to the accounting, I do not understand, and thus I do not know the practicality of this product. But learning can be used as the C# reference design object-oriented XML file manipulation, UI design, ListView, ContextMenuStrip control, more standardized. Tentatively named "Little accounting better. Platform: |
Size: 537600 |
Author:Cloris |
Hits:
Description: 餐饮管理系统(C#3.5+MicrosoftSQLServer2000)验证不同权限登录用户的方法、使用ListView控件制作桌台显示、使用MenuStrip控件制作系统菜单栏、使用ContextMenuStrip控件制作桌面右键菜单、开发餐饮管理系统的具体流程-Restaurant Management System (C# 3.5+ MicrosoftSQLServer2000) verify different permissions to the logged in user method, the ListView control production desk sets display, use the MenuStrip control to make the system menu bar, and ContextMenuStrip controls to make the desktop context menu, the development of food and beverage management systems processes Platform: |
Size: 2460672 |
Author:于丽莎 |
Hits:
Description: menustrip和contextmenustrip的基本用法,对初学这会有很大帮助-basic usage of menustrip and contextmenustrip of this would be a great help for beginners Platform: |
Size: 89088 |
Author:高海松 |
Hits:
Description: C#系统托盘程序示例源代码,知识点:
1、添加一个 NotifyIcon 组件和一个 ContextMenuStrip组件到主窗体
2、设置notifyIcon1控件的ContextMenuStrip属性为 contextMenuStrip1,将用户单击托盘图标显示的菜单指向 contextMenuStrip1
3、notifyIcon1.Visible = true //显示托盘图标
4、this.ShowIcon = true //应用程序窗口是否显示图标
5、this.ShowInTaskbar = true //是否在windows任务栏显示图标
6、this.WindowState = FormWindowState.Normal //设置窗口的显示状态(最大化、最小化和普通模式)
7、form2.Owner = this //设置拥有此窗体的窗体,this代表主窗体附属窗体随主窗体的显示而显示
form2.ShowInTaskbar = false
form2.Show()
8、Form1 formmain = new Form1() //form2的窗体关闭并显示form1窗体
formmain = (Form1)this.Owner //将全局变量this.Owner强制转换给FormMain类型-C# system tray program source code examples and knowledge points: 1, add a NotifyIcon component and a ContextMenuStrip component to the main form 2, set the control' s ContextMenuStrip property notifyIcon1 contextMenuStrip1, the user clicks on the tray icon to display a menu point contextMenuStrip1 3, notifyIcon1 . Visible = true // display the tray icon 4, this.ShowIcon = true // application window is displayed icons 5, this.ShowInTaskbar = true // whether to display an icon in the windows task bar 6, this.WindowState = FormWindowState . Normal // set the window display state (maximize, minimize and normal mode) 7, form2.Owner = this // set form with this form, this form represents the main form affiliated with the main window body of the display and display form2.ShowInTaskbar = false form2.Show () 8, Form1 formmain = new Form1 () // form2 and show form1 form closed form formmain = (Form1) this.Owner // The global variable this.Owner cast to type FormMain Platform: |
Size: 31744 |
Author:tpudn21 |
Hits:
Description: C#编程实现拖动无边框、无标题栏的窗体,实例需设置窗体的FormBorderStyle属性为None、设置ContextMenuStrip属性为当前添加的实例,用到了user32.dll中的API函数,用来释放被当前线程中某个窗口捕获的光标。-C# Programming drag no borders, no title bar of the form, examples need to set the form' s FormBorderStyle property to None, set the ContextMenuStrip property to add to the current instance, use the user32.dll the API function to release the current thread a window to capture cursor. Platform: |
Size: 60416 |
Author:三鲜丸子 |
Hits:
Description: 1.验证不同权限登录用户的方法
2.使用ListView控件制作桌台显示
3.使用MenuStrip控件制作系统菜单栏
4.使用ContextMenuStrip控件制作桌台右键菜单
-
1. Verify that the logged-on user permissions of different methods
2. Use the ListView control desk sets display production
3. Use the MenuStrip control production system menu bar
4. Use the ContextMenuStrip control desk sets make the right menu Platform: |
Size: 950272 |
Author:陈玉挺 |
Hits: