大约有 4,660 项符合查询结果(耗时:0.0096秒) [XML]

https://bbs.tsingfun.com/thread-570-1-1.html 

error: ‘uint16_t’ does not name a type - c++1y / stl - 清泛IT社区,创新赋能!

#include <stdint.h>   解决。/** * @file stdint.h * Copyright 2012, 2013 MinGW.org project * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Softw...
https://bbs.tsingfun.com/thread-569-1-1.html 

XXX.cc:100: error: ‘::strerror’ has not been declared - c++1y / stl - 清泛IT社区,创新赋能!

#include <string.h>  解决。
https://bbs.tsingfun.com/thread-1021-1-1.html 

App Inventor 2分享你的App:源代码(.aia)分享或编译成安卓安装包(.apk)分...

1、源代码(.aia)分享 导出要分享的项目源码.aia文件,然后将文件发送给他人或上传到网站。 他人收到或下载.aia源码文件后,导入自己的账户,如图: 2、编译成安卓安装包(.apk)分享 将项目编译成安卓平台直接可以安...
https://bbs.tsingfun.com/thread-828-1-1.html 

如何设置控件背景颜色透明? - C++ UI - 清泛IT社区,创新赋能!

使用菜单颜色设置控件CDC,模拟透明效果: COLORREF BkColor = GetSysColor(COLOR_MENU); pDC->SetBkColor(BkColor); 不过推荐使用第二种方式: pDC->SetBkMode(TRANSPARENT);         //设置控件背景透明
https://bbs.tsingfun.com/thread-763-1-1.html 

如何获取控件的值? - C++ UI - 清泛IT社区,创新赋能!

最简单直观的: CString str; GetDlgItemText(IDC_EDIT_TEST, str); int d=atoi(str.GetBuffer(0)); 更优雅的: .h:int m_editTest; .cpp: void CxxDlg::DoDataExchange(CDataExchange* pDX) {     DDX_Text(pDX, IDC_EDIT_TEST, m_editTest); } 这样就绑定了控件和一...
https://bbs.tsingfun.com/thread-767-1-1.html 

MFC CTabCtrl如何添加一个标签按钮关闭 - C++ UI - 清泛IT社区,创新赋能!

使用CMFCTabCtrl,调CMFCTabCtrl::EnableActiveTabCloseButton函数即可。
https://bbs.tsingfun.com/thread-837-1-1.html 

CListCtrl 扩展风格设置方法:SetExtendedStyle和ModifyStyleEx 区别 - C++...

...即只是对窗口的常规扩展属性作设定,这种属性以WS_EX_作前缀,比如WS_EX_CLIENTEDGE,在listctrl 控件中,它的扩展风格的值并没有存入窗口的GWL_EXSTYLE属性值中,而是通过发送LVM_SETEXTENDLISTVIEWSTYLE消息给listctrl控件来实现,因此它就...
https://bbs.tsingfun.com/thread-836-1-1.html 

MFC 设置控件字体,颜色,大小,粗体,下划线等 - C++ UI - 清泛IT社区,...

参考代码:CFont *f = new CFont; f->CreateFont(16, // nHeight                 0, // nWidth                 0, // nEscapement               &nbsp...
https://bbs.tsingfun.com/thread-817-1-1.html 

c++关闭按钮灰掉 - C++ UI - 清泛IT社区,创新赋能!

通过系统菜单灰掉: //获得系统菜单 CMenu *pMenu = GetSystemMenu(false); //获得关闭按钮ID UINT ID = pMenu->GetMenuItemID(pMenu->GetMenuItemCount()-1); //使关闭按钮无效 pMenu->EnableMenuItem(ID,MF_GRAYED);复制代码启用: //获得系统菜单 CMenu *pMenu = G...
https://bbs.tsingfun.com/thread-1027-1-1.html 

网上免登陆找素材、处理素材技巧 - App Inventor 2 中文网 - 清泛IT社区,创新赋能!

1、找声音素材推荐“站长素材”平台,不用登陆即可下载声音,体验很不错,网址:https://sc.chinaz.com/yinxiao/。 同样也可以找图片素材:https://sc.chinaz.com/tu/ 2、处理图片(在线ps): 功能及体验接近桌面版的Photoshop...