Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 135655
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T06:49:29+00:00 2026-05-11T06:49:29+00:00

I am starting a winform application[.NET 3.5, C#], where in the the main form

  • 0

I am starting a winform application[.NET 3.5, C#], where in the the main form of the application starts at a particular specified location. Am calling the following code in the constructor for this

    private void SetFormPosition()     {         this.StartPosition = FormStartPosition.Manual;         this.Left = Screen.PrimaryScreen.WorkingArea.Right - this.Width;         this.Top = Screen.PrimaryScreen.WorkingArea.Bottom - this.Height;                 } 

After the application starts, I would like to keep the location of the form fixed throughout the application lifetime.

Perhaps, I could ‘tap’ the Location event changed but am not sure if that would be very elegant.

Please suggest.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T06:49:30+00:00Added an answer on May 11, 2026 at 6:49 am

    I agree with others that you probably shouldn’t be doing this, but if you must, read on.

    You can override the SetBoundsCore method and prevent any movement. We use this to prevent vertical resizing on some UserControl implementations (such as those that contain a ComboBox or other fixed height control), but it is also responsible for the location changing.

    The following should get you started:

        protected override void SetBoundsCore(              int x, int y, int width, int height, BoundsSpecified specified)     {         x = this.Location.X;         y = this.Location.Y;         //...etc...         base.SetBoundsCore(x, y, width, height, specified);     } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Starting from this code: class Base{ public: virtual void foo(){....} }; class Derived{ public:
I am starting a new Winforms application, and I've always used traditional ADO.NET methods
I am doing lot of desktop application but using .Net WinForm. But now for
Starting with 2005, VS started this behavior of when starting debugging session it spawns
Starting from ASP.NET MVC Preview 3, HTML.Button ( and other related HTML controls) are
Starting with the error: Error 81 The OutputPath property is not set for this
Starting with the following LINQ query: from a in things where a.Id == b.Id
I have a .NET WinForms application that I've converted into a COM dll using
Working with a fairly large VB.Net back office winforms application. 1 million+ LOC. Big
If someone were starting out with the .NET framework, what is the most feasible

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.