Skip to content

Commit

Permalink
Update Tutorial.md
Browse files Browse the repository at this point in the history
  • Loading branch information
zouhuidong authored Apr 3, 2022
1 parent 1d09e02 commit 697bb64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ EasyWin32.h 中注释:
//
// 窗口消息处理函数规范
//
// 函数标准形态:bool WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam, HINSTANCE hInstance);
// 函数标准形态:bool WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, HINSTANCE hInstance);
//
// 注意:
// 相比于标准的 Win32 窗口过程函数,增加了一个 HINSTANCE 类型形参。
Expand Down Expand Up @@ -382,7 +382,7 @@ int main()

EasyWin32 将自绘一个 EasyX 的图标作为程序图标,这个图标模仿的是 EasyX 官网的页面图标。

如果想要使用自己的图标,必须先在程序第一次创建窗口前就设置 `EasyWin32::SetIsUseCustomAppIcon(true);`
如果想要使用自己的图标,必须先在程序第一次创建窗口前就调用 `EasyWin32::SetCustomIcon` 函数,并传入自己的图标资源 ID

## 在原有 EasyX 项目上使用 EasyWin32

Expand Down

0 comments on commit 697bb64

Please sign in to comment.