Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Moving Form Without Titlebar

0.00/5 (No votes)
13 Jun 2007 1  
This code will help you in creating a customized form interface

Introduction

This will simply show you code that can customize the Graphical User Interface in your Windows application.

Background

I think you are familiar with the graphical user interface[GUI] of AVG Anti-Spyware Software... so what's new about that? Have you noticed that the GUI is like an edited photo? Have you noticed that it can move without dragging the title bar.

In this case, I will show you how we can actually do the same things.

Using the Code

Using this code will help you to customize your GUI:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication1
{
    public partial class Form2 : Form
    {   public bool isMouseDown=false;
        public int xLast;
        public int yLast;
        
        private void pictureBox1_MouseUp(object sender, MouseEventArgs e)
        {
            isMouseDown = false;
        }

        private void pictureBox1_MouseMove(object sender, MouseEventArgs e)
        {
            if (isMouseDown)
            {
                int newY = this.Top + (e.Y - yLast);
                int newX = this.Left + (e.X - xLast);

                this.Location = new Point(newX, newY);
            }
        }

        private void pictureBox1_MouseDown(object sender, MouseEventArgs e)
        {
            isMouseDown = true;
            xLast = e.X;
            yLast = e.Y;
        }
    }
}
//

Points of Interest

In addition, did you know that you can make your own skins like in the WMP in this code?

You can do this as follows:

  • Get your edited photo <or your design Skins>
  • Place the photo in form application
  • Set Formborder to None
  • Set the Transparency of the form

THERE YOU HAVE IT... ENJOY!

History

  • 13th June, 2007: Initial post

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here