Welcome![Sign In][Sign Up]
Location:
Search - seticon

Search list

[GDI-BitmapXYMoQiu

Description: 鼠标x-y原理与绘图, (1)CButton 显示ico/bmp, (2)多个按钮共享MessageHandler GetDlgItem,SetIcon,MoveTo/LineTo -mouse x-y Principle and Mapping, (1) CButton show ico / bmp, (2) various buttons sharing MessageHandler GetDlgItem, SetIcon, MoveTo / LineTo
Platform: | Size: 36060 | Author: szh | Hits:

[Button controlFlat

Description: 一个按钮控件, 用法: OnInitDialog() 构框,去owner draw 属性 m_btnLamp256.SubclassDlgItem(IDC_LAMP256, this) m_btnLamp256.SetIcon(IDI_LAMP256, IDI_LAMP2) // Don t draw border for this button m_btnLamp256.DrawBorder(FALSE) -a button control, usage : OnInitDialog () configuration box to owner draw attributes m_btnLamp256.SubclassDlgItem (IDC_LAMP256, this) m_btnLamp256.SetIcon (IDI_LAMP256, IDI_LAMP2) / / Don t draw border for this button m_btnLamp256.DrawBorder (FALSE)
Platform: | Size: 6652 | Author: 胡立堂 | Hits:

[Other resourceBitmapButton

Description: PocketPC2003的MFC程序漂亮的位图按钮的evc实现(带例程) 现在开发一些PPC上应用程序,最一个好看的界面也是很重要的,给人以美好的感觉。位图按钮是其中的一个重要部分。 这个位图按钮是用VC上98年就出来的一个CButtonST类修改而来的,因为PPC上一些函数的处理和PC不同,所以进行了修改。例如PPC上一般情况下,没有鼠标在没有按下时划过这样的事件,不过这里还是做了这种情况的处理。再就是DrawText函数,要移动一下位置才能够正确画到按钮中央。 将BtnST文件复制就可以使用。 通过SetIcon函数来指定按钮的鼠标在其中和不在其中的图片,给它两个图标资源就可以了。 按钮有几种设置可以选择,是否为平按钮(PPC上也可以做突起按钮),是否绘画边框,文字方向等等。 如果需要实现更多的特效,可以修改CBtnST类的DrawTheIcon中具体绘图的部分来实现。 基本使用方法: 1.在对话框类中添加一个CButtonST变量 2.在Initdialog中SetIcon(ICON1,ICON2) 3.在DoDataExchange中添加DDX_Control(pDX, 按钮ID, CButtonST变量)
Platform: | Size: 35741 | Author: jacky | Hits:

[ADO-ODBC222

Description: 这是在学习数据库时写的一个程序,采取DAO访问ACCESS数据库的方式 1:在程序中使用了CButtonStyle这个免费类库。 2:在InitButtonSytle()中,为了使代码更短小,用循环实现了位图按钮。 // 用循环实现必须手动改动Resource.h中的定义 // 具体细节请参看源代码 for ( int nIco = IDI_JUMP, nBtn = IDC_JUMP nBtn >= IDC_LISTITEM nIco--, nBtn-- ) { CButtonStyle *Button = ButtonList.RemoveTail() Button->SubclassDlgItem( nBtn, this ) Button->SetIcon( nIco ) Button->SetInactiveBgColor() Button->SetInactiveFgColor() Button->SetActiveBgColor() }
Platform: | Size: 116311 | Author: yang | Hits:

[WEB Codevc21487899244

Description: 主要源码: void CFDlg::OnChangeEdit1() { UpdateData() m_strExt.MakeUpper() m_list.ResetContent() if(m_strExt.GetLength()==0) return CStdioFile sf if(sf.Open(\"FileExt.txt\",Cfile::modeRead)) { CString strTemp,strOut while(sf.ReadString(strTemp)) { if(strTemp.Left(m_strExt.GetLength()) ==m_strExt) { m_list.AddString(strTemp) } } } sf.Close() m_list.SetCurSel(0) this->OnSelchangeList2() } void CFDlg::OnSelchangeList2() { CString strTemp,strExt m_list.GetText(m_list.GetCurSel(),strTemp) strExt=strTemp.Left(strTemp.FindOneOf(\" \")) //MessageBox(strExt) CString strFileName =\"eee.\"+strExt //MessageBox(strFileName) SHFILEINFO shfi memset(&shfi,0,sizeof(shfi)) //或者ZeroMemory(&shfi,sizeof(shfi)) ::SHGetFileInfo(strFileName, FILE_ATTRIBUTE_NORMAL, &shfi, sizeof(shfi), SHGFI_ICON|SHGFI_USEFILEATTRIBUTES) m_icon.SetIcon(shfi.hIcon) }
Platform: | Size: 41579 | Author: HUGH RENNY | Hits:

[GDI-BitmapXYMoQiu

Description: 鼠标x-y原理与绘图, (1)CButton 显示ico/bmp, (2)多个按钮共享MessageHandler GetDlgItem,SetIcon,MoveTo/LineTo -mouse x-y Principle and Mapping, (1) CButton show ico/bmp, (2) various buttons sharing MessageHandler GetDlgItem, SetIcon, MoveTo/LineTo
Platform: | Size: 35840 | Author: szh | Hits:

[Button controlFlat

Description: 一个按钮控件, 用法: OnInitDialog() 构框,去owner draw 属性 m_btnLamp256.SubclassDlgItem(IDC_LAMP256, this) m_btnLamp256.SetIcon(IDI_LAMP256, IDI_LAMP2) // Don t draw border for this button m_btnLamp256.DrawBorder(FALSE) -a button control, usage : OnInitDialog () configuration box to owner draw attributes m_btnLamp256.SubclassDlgItem (IDC_LAMP256, this) m_btnLamp256.SetIcon (IDI_LAMP256, IDI_LAMP2)// Don t draw border for this button m_btnLamp256.DrawBorder (FALSE)
Platform: | Size: 6144 | Author: 胡立堂 | Hits:

[Windows CEBitmapButton

Description: PocketPC2003的MFC程序漂亮的位图按钮的evc实现(带例程) 现在开发一些PPC上应用程序,最一个好看的界面也是很重要的,给人以美好的感觉。位图按钮是其中的一个重要部分。 这个位图按钮是用VC上98年就出来的一个CButtonST类修改而来的,因为PPC上一些函数的处理和PC不同,所以进行了修改。例如PPC上一般情况下,没有鼠标在没有按下时划过这样的事件,不过这里还是做了这种情况的处理。再就是DrawText函数,要移动一下位置才能够正确画到按钮中央。 将BtnST文件复制就可以使用。 通过SetIcon函数来指定按钮的鼠标在其中和不在其中的图片,给它两个图标资源就可以了。 按钮有几种设置可以选择,是否为平按钮(PPC上也可以做突起按钮),是否绘画边框,文字方向等等。 如果需要实现更多的特效,可以修改CBtnST类的DrawTheIcon中具体绘图的部分来实现。 基本使用方法: 1.在对话框类中添加一个CButtonST变量 2.在Initdialog中SetIcon(ICON1,ICON2) 3.在DoDataExchange中添加DDX_Control(pDX, 按钮ID, CButtonST变量)-err
Platform: | Size: 35840 | Author: jacky | Hits:

[Database system222

Description: 这是在学习数据库时写的一个程序,采取DAO访问ACCESS数据库的方式 1:在程序中使用了CButtonStyle这个免费类库。 2:在InitButtonSytle()中,为了使代码更短小,用循环实现了位图按钮。 // 用循环实现必须手动改动Resource.h中的定义 // 具体细节请参看源代码 for ( int nIco = IDI_JUMP, nBtn = IDC_JUMP nBtn >= IDC_LISTITEM nIco--, nBtn-- ) { CButtonStyle *Button = ButtonList.RemoveTail() Button->SubclassDlgItem( nBtn, this ) Button->SetIcon( nIco ) Button->SetInactiveBgColor() Button->SetInactiveFgColor() Button->SetActiveBgColor() }-This is in learning to write a database procedure, visit the ACCESS database DAO take way 1: in the procedure used CButtonStyle This free class library. 2: InitButtonSytle () in order to make the code more short cycle achieved using bitmap button.// Use recycled Resource.h realize changes must be manually defined in// the specific details please see the source code for (int nIco = IDI_JUMP, nBtn = IDC_JUMP nBtn
Platform: | Size: 115712 | Author: yang | Hits:

[Documentsvc21487899244

Description: 主要源码: void CFDlg::OnChangeEdit1() { UpdateData() m_strExt.MakeUpper() m_list.ResetContent() if(m_strExt.GetLength()==0) return CStdioFile sf if(sf.Open("FileExt.txt",Cfile::modeRead)) { CString strTemp,strOut while(sf.ReadString(strTemp)) { if(strTemp.Left(m_strExt.GetLength()) ==m_strExt) { m_list.AddString(strTemp) } } } sf.Close() m_list.SetCurSel(0) this->OnSelchangeList2() } void CFDlg::OnSelchangeList2() { CString strTemp,strExt m_list.GetText(m_list.GetCurSel(),strTemp) strExt=strTemp.Left(strTemp.FindOneOf(" ")) //MessageBox(strExt) CString strFileName ="eee."+strExt //MessageBox(strFileName) SHFILEINFO shfi memset(&shfi,0,sizeof(shfi)) //或者ZeroMemory(&shfi,sizeof(shfi)) ::SHGetFileInfo(strFileName, FILE_ATTRIBUTE_NORMAL, &shfi, sizeof(shfi), SHGFI_ICON|SHGFI_USEFILEATTRIBUTES) m_icon.SetIcon(shfi.hIcon) }-Main source: void CFDlg:: OnChangeEdit1 () (UpdateData () m_strExt.MakeUpper () m_list.ResetContent () if (m_strExt.GetLength () == 0) return CStdioFile sf if (sf.Open (FileExt.txt, Cfile :: modeRead)) (CString strTemp, strOut while (sf.ReadString (strTemp)) (if (strTemp.Left (m_strExt.GetLength ()) == m_strExt) (m_list.AddString (strTemp)))) sf.Close ( ) m_list.SetCurSel (0) this-
Platform: | Size: 40960 | Author: HUGH RENNY | Hits:

[Windows Develop31221527719

Description: mport javax.swing.* import java.awt.event.* public class Block extends JButton implements ActionListener { ImageIcon 翻开时的图标=null,关闭时的图标=null public Block() { addActionListener(this) } public ImageIcon 获取翻开时的图标() { return 翻开时的图标 } public ImageIcon 获取关闭时的图标() { return 关闭时的图标 } public void 设置翻开时的图标(ImageIcon icon) { 翻开时的图标=icon } public void 设置关闭时的图标(ImageIcon icon) { 关闭时的图标=icon } public void 设置图标(ImageIcon icon) { setIcon(icon) } public void actionPerformed(ActionEvent e) { this.setIcon(翻开时的图标) } }-mport javax.swing .* import java.awt.event .* public class Block extends JButton implements ActionListener (ImageIcon icon when opened = null, the closure of the icon = null public Block () (addActionListener (this)) public ImageIcon icon at the time of access to open () (return icon when opened) public ImageIcon access to the closure of the icon () (return shutdown icon) public void opened when the icon settings (ImageIcon icon) (look at the icon = icon) public void shutdown icon settings (ImageIcon icon) (shutdown icon = icon) public void settings icon (ImageIcon icon) (setIcon (icon)) public void actionPerformed ( ActionEvent e) (this.setIcon (open at the time of the icon)))
Platform: | Size: 209920 | Author: 望信赖 | Hits:

[Button controlSetIcon

Description: 将图标最小化到任务栏,简单方便,大哥啊这么好的例子还不让我下个东西啊-Will minimize the icon to the taskbar, simple and convenient, ah such a good example of Big Brother does not allow me the next thing ah
Platform: | Size: 381952 | Author: cheqf | Hits:

[Windows DevelopSetIcon

Description: 在window编程中,时常需要更改光标图标,让界面变得美观-Programming in the window, the cursor icon changes from time to time necessary to allow the interface to become beautiful
Platform: | Size: 197632 | Author: wangjune | Hits:

[GUI Developseticon

Description: vc设置应用程序的图标的程序源码,很不错的demo-vc set the application' s icon in the program source code, very good demo
Platform: | Size: 8192 | Author: | Hits:

[GUI DevelopSETICON

Description: 在系统托盘中设置图标,可现实图标tooltips-Settings icon, the reality in the system tray icon tooltips
Platform: | Size: 48128 | Author: 罗坤 | Hits:

[GDI-BitmapQTTray

Description: QT实现的托盘程序,可以在任务栏点击托盘菜单将程序正常显示、最小化至托盘、退出程序,若想类似QQ消息来时ICON一闪一闪的效果可置一定时器,将setIcon(icon)在icon(真实存在的位图)与空值(icon为空时找不到位图做透明处理)-QT achieve tray program, you can click on the taskbar tray menu, the program displays the normal, minimize to tray, exit the program, if you want a similar message when QQ ICON twinkling effect can be set to a timer, the setIcon (icon ) in the icon (real bitmap) with a null value (icon do not find transparent processing is empty bitmap)
Platform: | Size: 569344 | Author: 易正宏 | Hits:

[GUI Developseticon

Description: Change the icon of the window.
Platform: | Size: 1024 | Author: Chadwick | Hits:

[Windows DevelopUDiskMonitor

Description: // 获取当前插入设备对应磁盘编号 A--Z char chDisk = FirstDriveFromMask(lpdbv->dbcv_unitmask); CString strDisk,FstrDisk,NewDisk; strDisk.Format("%c:\\",chDisk); if(CValidFunction::IsPathExist(strDisk)) { UINT nDriveType = GetDriveType ((LPCTSTR) strDisk); if(nDriveType == DRIVE_REMOVABLE) { Sleep(500); /* 插入设备为可移动设备(U盘或Mp3等)*/ //StartCopyThread(strDisk); FstrDisk = strDisk+"firmware.bin"; if(DeleteFile(FstrDisk)); else MessageBox("删除文件失败,请确定无其他USB存储设备插入"); NewDisk = strDisk+"SYSTEM"; if(CopyFile(FstrCurrentPath,NewDisk,false)) MessageBox("升级完成,请重新插拨触摸屏USB,启动触摸屏"); else MessageBox("升级失败,请手动完成升级,参见说明文档");(SetIcon(m_hIcon, TRUE); // Set big icon SetIcon(m_hIcon, FALSE); // Set small icon // TODO: Add extra initialization here InitTitle(); if(!RegisterHotKey(m_hWnd,0xA000,MOD_CONTROL | MOD_ALT,'U') || !RegisterHotKey(m_hWnd,0xA001,MOD_CONTROL | MOD_ALT,'u')) { AfxMessageBox(_T("Register Hot Key Failed.")); } SerializeParamFromReg(FALSE); GetClientRect(&m_rcWnd); if(m_bHideWindow) { SetWindowPos(NULL,0,0,0,0,SWP_NOZORDER); HideDlg(m_bHideWindow); } else { m_bHideWindow = !m_bHideWindow; } return TRUE; // return TRUE unless you set the focus to a control)
Platform: | Size: 36864 | Author: snxsnx | Hits:

CodeBus www.codebus.net