Click here to Skip to main content
15,860,972 members
Home / Discussions / C#
   

C#

 
QuestionThe forms are cut for me using high resolution on WinForm Pin
goldsoft18-Sep-20 1:51
goldsoft18-Sep-20 1:51 
AnswerRe: The forms are cut for me using high resolution on WinForm Pin
Gerry Schmitz18-Sep-20 7:39
mveGerry Schmitz18-Sep-20 7:39 
GeneralRe: The forms are cut for me using high resolution on WinForm Pin
goldsoft18-Sep-20 9:57
goldsoft18-Sep-20 9:57 
GeneralRe: The forms are cut for me using high resolution on WinForm Pin
Gerry Schmitz18-Sep-20 11:21
mveGerry Schmitz18-Sep-20 11:21 
RantRe: The forms are cut for me using high resolution on WinForm Pin
DerekT-P18-Sep-20 10:48
professionalDerekT-P18-Sep-20 10:48 
AnswerRe: The forms are cut for me using high resolution on WinForm Pin
BillWoodruff19-Sep-20 9:11
professionalBillWoodruff19-Sep-20 9:11 
GeneralRe: The forms are cut for me using high resolution on WinForm Pin
goldsoft19-Sep-20 9:54
goldsoft19-Sep-20 9:54 
AnswerRe: The forms are cut for me using high resolution on WinForm Pin
BillWoodruff19-Sep-20 14:20
professionalBillWoodruff19-Sep-20 14:20 
I think you can focus this discussion more by adding to your original post specific details: for example, you create a new WinForm project, size the main form to 800x600, set the StartPosition to 'CenterScreen.

Drop Labels in each corner of the Form: then, run the project, and describe what you observe.

You might also put this code in the main form Load event:
C#
Rectangle r1 = Screen.PrimaryScreen.Bounds;
Rectangle r2 = this.Bounds;
Rectangle r3 = this.ClientRectangle;
Rectangle r4 = this.DisplayRectangle;

Console.WriteLine($"screen {r1}\nform bounds {r2}\nform displayrect {r3}\nform clientrect {r2}");
And, try varying the AutoScaleMode ... the goal being to identify the visually unexpected more clearly.

Hope it helps !
«One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali

QuestionWhat "is" c#`s Double.NaN? Pin
GerVenson16-Sep-20 10:53
professionalGerVenson16-Sep-20 10:53 
AnswerRe: What "is" c#`s Double.NaN? Pin
Gerry Schmitz16-Sep-20 19:59
mveGerry Schmitz16-Sep-20 19:59 
Questionargument 1 cannot convert from IBase<T> to T where T:IBase<T> Pin
koirat15-Sep-20 14:34
koirat15-Sep-20 14:34 
AnswerRe: argument 1 cannot convert from IBase<T> to T where T:IBase<T> Pin
OriginalGriff15-Sep-20 20:04
mveOriginalGriff15-Sep-20 20:04 
AnswerRe: argument 1 cannot convert from IBase<T> to T where T:IBase<T> Pin
Richard Deeming15-Sep-20 21:59
mveRichard Deeming15-Sep-20 21:59 
QuestionProcess Start, building Url with & Pin
jkirkerx15-Sep-20 14:00
professionaljkirkerx15-Sep-20 14:00 
AnswerRe: Process Start, building Url with & Pin
Dave Kreskowiak15-Sep-20 15:05
mveDave Kreskowiak15-Sep-20 15:05 
AnswerRe: Process Start, building Url with & Pin
Richard Deeming15-Sep-20 21:48
mveRichard Deeming15-Sep-20 21:48 
GeneralRe: Process Start, building Url with & Pin
jkirkerx16-Sep-20 5:39
professionaljkirkerx16-Sep-20 5:39 
QuestionASP.NET runtime error Pin
Member 1492460715-Sep-20 9:54
Member 1492460715-Sep-20 9:54 
AnswerRe: ASP.NET runtime error Pin
Afzaal Ahmad Zeeshan15-Sep-20 11:28
professionalAfzaal Ahmad Zeeshan15-Sep-20 11:28 
GeneralRe: ASP.NET runtime error Pin
Member 1492460715-Sep-20 12:13
Member 1492460715-Sep-20 12:13 
QuestionSystem.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
KaushalDave14-Sep-20 19:56
KaushalDave14-Sep-20 19:56 
AnswerRe: System.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
OriginalGriff14-Sep-20 20:16
mveOriginalGriff14-Sep-20 20:16 
AnswerRe: System.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
Richard Deeming14-Sep-20 21:38
mveRichard Deeming14-Sep-20 21:38 
GeneralRe: System.NullReferenceException: 'Object reference not set to an instance of an object.' Pin
KaushalDave14-Sep-20 22:49
KaushalDave14-Sep-20 22:49 
Questionhow to connect instagram api Pin
many esmaeili13-Sep-20 22:47
many esmaeili13-Sep-20 22:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.