c# autocad dialog box to detect a new active drawing [closed] - c#

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have a modeless dialog box displaying drawing information. is there a way to detect when another drawing is active and update the dialog box to show the new drawings information?

You should be using a paletteset instead of a modeless window.
Also, google AutoCAD document events.

Related

Make Form responsive according to monitor screen [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have designed Windows Form according to My monitor screen. When I installed my application on other PC with Different Screen size, the Form controls has been disturbed over Form, as most buttons goes out of Screen.
PS, Since I made default WindowState to Maximized, it do not show scroll bar.
I want to make UI responsive on any screen size

How to find a missing button on windows form without too many changes? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
What can I use to view all the controls on a form if everything is overlapping each other etc. Don't want to touch it yet, just view, make sure they're there.
You could use the "Document Outline" window (view ==> other windows ==> Document Outline) to see all control inside the form and select them from there.
Try to use Document outline in visual studio.
View - Other Windows - Document outline or ctrl + alt + t. It should show you win form controls structure.

Creating a visual GUI [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I would like to know how to create an custom user interface for a program I am making.
What I want to add besides the default buttons and text boxes is an raster image frame inside of the application and some raster image buttons that change their animation/image.
And also learn how to draw additional items on the screen (buttons, input boxes) after pressing the desired selector button (for input types).
All in all - I would appreciate it if some one pointed me to a tutorial for this or code examples I can learn from.
You have http://www.wpftutorial.net/ to learn how to create WPF interfaces (Windows Presentation Foundation) for Windows / Phone.

Controls instead of icon in system tray icon in c# [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Is it possible to add control like check-box in system tray icon in c#?
i wants to handle check and uncheck event within that checkbox. So that i dont need to handle it on ContextMenu.
No. You can only set the icon and handle clicks, doubleclick, etc...
However, you can simulate the checkbox behaviour by changing the icon.

How can hide controls in Windows Form Application without hide base form [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
i'm sorry for poor English.
I have a form in my C# Winform Application. This form includes controls such as Label,TextBox...!
how can i hide Form without hide it's controls?!!
For example it use in create User Control such as DateTimePicker,...
how do work hidden and show calendar box in DateTimepicker?!!!!!!!!!!!!!
Well this isn't possible since the form is the root element and making it invisible automatically hides the children inside,
you can cleverly customize the height and width somehow according to your needs.

Categories

Resources