diff --git a/README.md b/README.md index ed1df7e..625ef6b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![ipiccy_image (2)](https://user-images.githubusercontent.com/84229419/210152610-2e2dcac6-a9de-4b8d-97fd-c0b16340cf95.jpg) # 🪟 WinBlur (Windows 10 & Above) -WinBlur is a C#, VB, C++ .NET Library that allows developers to use modern blur types on their forms, and (maybe) controls. +WinBlur is a C#, VB, C++ .NET Library that allows developers to use modern blur types on their forms. **Getting Started: __3 easy steps__ to use WinBlur.** @@ -29,7 +29,7 @@ using static WinBlur.UI; // The code on top is recommended, but is not necessary. // In case the code below doesn't work by itself, please change the control/form BackColor to Black/White. -SetBlurStyle(cntrl: this, blurType: BlurType.Acrylic, designMode: Mode.DarkMode); +SetBlurStyle(frm: this, blurType: BlurType.Acrylic, designMode: Mode.DarkMode, showWindowsTitle: true); ``` - ⚠️**WARNING:** If **you are** using the `None` FormBorderStyle, then create the `Form_Shown` event instead, and add the same code that is shown on top of this text.