• C# Form Fade In/Fade Out

    C# Form Fade In/Fade Out

    This short tutorial is made to show you how to create a fade in / fade out effect for a form. Since basic Windows Forms doesn’t provide such an option, it must be done manually. Note: we’ll use timers instead...


  • C# Create Child Forms

    C# Create Child Forms

    Child Forms are those forms that are found inside another form (parent form). There are multiple ways to create child forms - most of them require to use a MDI Container. Child Forms without MDI Container I, personally, had lots...


  • C# Moving form without border/title bar

    C# Moving form without border/title bar

    1. Removing the title bar and border In this tutorial I will show you how you can make a draggable window (Form) with no title bar or border. By default, when you remove the border of a Form, you can’t...


  • C# Form with Gradient Background

    C# Form with Gradient Background

    Gradient is a method which consists in slowly switching from one color to another - it’s used very often in application’s design. In this tutorial I’ll show you how to create this effect using only code: First, create a Forms...