How to display Button on form [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
As in this picture, how I can create a list with users and display it on the listbox with two buttons delete and launch and when I can create there code what I must do help please !

I assume you want to write windows forms application with C#. I use DataGridView for this purpose, because in datagridview we can define columns. The wireframe has 3 columns one is the name and others are launch and delete. There is also listview component if you like. If it is a webpage there are similar components like asp.net GridView. These components also have databindings with SqlDataSource, so CRUD operations can be done without coding.

If you are a beginner to winforms, check this out.

Related

How to make a vertical icon bar like in Microsoft Teams [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
C#, .NET Framework 4.8, WinForms:
I want to create a vertical icon bar with the same look & feel as in Microsoft Teams (see picture).
So also hovering, highlighting, short cuts, etc. should be the same.
Which of the standard controls is the best for this? Would you take a TreeView? Or do I need to make a custom control? How is it solved in MS Teams?
I have no Idea how this is made in MS Teams, but what I should do I create a custom view with the selector on the left with a visibility state, so when you select one of the items, you change the background color and make the selector visible at the selected item. This will result in a similar design as in MS Teams!
I hope you can start working on it, just ask if you can't figure something out!

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

what control should I use for this? [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
In visual studio the toolbox design is like
when you click on,sub items are shown .
what is its name ,and how can I have one ?
I want to use this in windows form not wpf
It is commonly called a Tree View. In C#, there are two built in classes. Depending on which UI framework you are using, you would use either:
System.Windows.Controls.TreeView (WPF)
System.Windows.Forms.TreeView (WinForms)
Do a menuStrip. Drag a menuStrip on your form. Then add what you want. Click each item you add then code what the item does.

C# and access trying to order and change order [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 have a Access Database that i manipulate though a c# program.
i am trying to get a order of items that satisfy certain conditions.and be able to change the order.
my idea is to copy the unique key in to another field then order by that field and have a button that moves up and a button that moves down.is this the right way to go about this ?
a separate column in a table called Order for example makes sense, as does allowing a user to re-order the items and save it back to the database. Maybe drag/drop or something for re-ordering would be a bit less clunky than buttons, but I guess it depends if your c# application is winforms, wpf, web, etc. as to how easy that is.

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.

Categories

Resources