Win-Live2D-C++:一种解决模型窗口透明部分鼠标事件穿透到下层窗口的办法
引入:在Live2D官方的Demo中,我们将窗口设置为透明后,即使窗口透明,我们鼠标的事件仍然会被透明窗口处理,如何才能让鼠标的事件穿透到下层窗口呢?利用WindowsAPI,我们可以实现鼠标事件的穿...
每日C++(25年):5月合集
5月1日:C++11 新特性解析:Lambda 表达式(1)5月2日:C++11 新特性解析:std::enable_if 和 SFINAE5月3日:C++11 新特性解析:std::array 和其与传统数组的优缺点5月4日:C++17 新特性解析:s...
C++: string-字符串头文件
函数名站内文章/帖子备注std::basic_string::find_first_not_of()string: std::basic_string::find_first_not_of——————std::string::find_first_of()string:std::string::find_first_of...
每日C++(25年):9月8日 – 9月14日
9月8日:cmath:std::assoc_laguerre9月9日:cmath:std::beta9月10日:cmath:std::comp_ellint_19月11日:cmath:std::cyl_bessel_j9月12日:cmath:std::cyl_bessel_i9月13日:cmath:std::c...
每日C++(25年):7月21日 – 7月27日
7月21日:iostream:std::ostream::flush7月22日:iostream:std::cout::put7月23日:iostream:std::ostream::tie7月24日:iostream:std::ostream::width7月25日:iostream:std::ios::sync_w...
每日C++(25年):9月合集
9月1日:cmath:std::signbit9月2日:cmath:std::lgamma9月3日:cmath:std::modf9月4日:cmath:std::floor9月5日:cmath:std::frexp9月6日:cmath:std::fdim9月7日:cmath:std::isfinite9...
每日C++(25年):8月25日 – 8月31日
8月25日:cmath:std::rint8月26日:cmath:std::isinf8月27日:cmath:std::ceil8月28日:cmath:std::ldexp8月29日:algorithm:std::find_end8月30日:cmath:std::copysign8月31日:cmath:...
每日C++(25年):6月16日 – 6月22日
6月16日:C++17: std::shuffle6月17日:C++17:std::partial_sort6月18日:C++11: std::is_heap6月19日:C++17:std::inplace_merge6月20日:C++14: std::remove_if6月21日:C++17: std::trans...
每日C++(25年):8月4日 – 8月10日
8月4日:cmath:std::fma8月5日:cmath:std::nextafter8月6日:cmath:std::round8月7日:cmath:std::trunc8月8日:cmath:std::remainder8月9日:cmath:std::isnan8月10日:cmath:std::fma...
每日C++(25年):7月14日 – 7月20日
7月14日:string:std::string::assign7月15日:string:std::string::ends_with7月16日:string:std::string::at7月17日:string:std::string::remove_suffix7月18日:string:std::string::...
每日C++(25年):9月22日 – 9月28日
9月22日:cmath:std::comp_ellint_39月23日:cmath:std::assoc_legendre9月24日:cmath:std::atan29月25日:cmath:std::sinh9月26日:cmath:std::fmin9月27日:cmath:std::sin9月28日:cm...
WindowsAPI-控件:MonthCalendar
使用WindowsAPI,创建MonthCalendar控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_CALENDAR 101 LRESULT CALLBACK WindowPr...