C# Windows forms application page-up page-down [closed] - c#

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
a busy cat http://non-98.ucoz.com/browser_choice_large.png
!
I want to add "this thing" (I don't know its name in english
:D) in my widows forms application.
Can someone help me?
Thanks.

Like the comments already noted you need to use the Form.AutoScroll property and set the form size to be fixed. Then a scrollbar will appear on your form if there's a control within it that surpasses the field of view of your form.

You can use the ScrollableControl. It has some properties to control the scrollbar.

Related

How to navigate in Windows Explorer using alternative ways in Windows Forms 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 2 years ago.
Improve this question
I'm looking for alternatives to "FolderBrowserDialog" and "SaveFileDialog" or how I can edit these screens.
I need to create exactly the same interface of the image attached and the big challenge for me is how navigate/access the Windows Explorer like that in C#, as I didn't found how to edit the default save or select folder screens provided by C#.
Create log screen
You can create your own file dialog using TreeView
Check Daniel's answer on this post

How to set the location of the button to fixed even when on scroll? [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
Been searching for hours and I can't seem to find a solution on this. I'd like to set my button to fixed even when the form is on scroll. Can anyone help?
Are you using a FlowLayoutPanel in your form for scrolling? More information would help us help you. So would adding some code snippets.
For the time being, have you considered putting the button above (or below, or to the side, or wherever you want it to be fixed) the scrollable component in your app? That way, it remains in the spot you want it while scrolling occurs in the scrollable area?

Can you make a listview or similar of small functional forms or equivalent as shown in picture? [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 6 years ago.
Improve this question
I need to make a list(view?) containing individual forms, or objects that can mimic my needs (buttons, labels, images) preferably resizeable if a button is pushed so I can expand downwards and show a textbox that can contain info and/or be edited)
Problem is olved using TaW suggestion in the comments above.
Many thanks

How to shows grouped header list in windows phone 8.1? [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 8 years ago.
Improve this question
i need this type of page in my application is this possible to make this kind of selection list in windows phone. please help me and provide me the right direction to achieve this.
If you're using Silverlight, you need to use a LongListSelector, which already has support for sections (A-Z, or whatever you want).
You can follow Microsoft's tutorial here:
https://msdn.microsoft.com/en-us/library/windows/apps/jj244365(v=vs.105).aspx
However, for the newer Windows Runtime, the class is now ListView. You can see how to use it here: http://www.visuallylocated.com/post/2014/04/28/Migrating-from-the-LongListSelector-to-the-ListView-in-Windows-Phone-XAML-Apps.aspx
Please note that it will be visually different than iOS.

How to use Windows 7 Style Controls in .net [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 3 years ago.
Improve this question
I am trying to make my application use the new style controls but the controls that default into the VS2010 toolbox are not the same. Does anybody know where to get the controls? Are they available to developers or does the painting have to be done with a custom method to replicate the results.
Here are some examples,
This is an image of the tree view I currently have in my application with a solid blue selection style
This is the selection style I wish to replicate,
Thanks for your help.

Categories

Resources