Skip to main content

All Questions

Tagged with
1 vote
1 answer
191 views

How do you hide a single listboxitem in a listbox using wpf codebehind?

I am creating a list box that holds notes. When a note is selected and double-clicked it opens an editing form. Here there is an option to archive the note. When the note is archived it should not be ...
Julia's user avatar
  • 55
1 vote
3 answers
115 views

Making a new form window appear in c#

I'm trying to make a card game using Windows Application Forms. The thing is that I don't know how to do the following- for example if i'd have 3 buttons- one of them named, for example, "Play", if i'...
MarisP's user avatar
  • 977
0 votes
2 answers
1k views

Hide Form when clicked outside of DataGridView

I have a Form which holds a DataGridView, this Form also loads with an invisible Form which only holds another DataGridView. The second DGV is used to display more information on the items in the ...
LeonidasFett's user avatar
  • 3,102
0 votes
1 answer
58 views

Winform handling

I have 3 forms. We can enter to form2 through form1.(Then form1 will disappear.) When we close form2, form1 will reappear. Similarly we can enter to form3 through form2.(Then form2 will disappear.) ...
jubairusman's user avatar
0 votes
2 answers
760 views

Keep second form visible while first form is active

I have a form which contains some stuff (buttons, labels, pictures...). When the first form is shown, a second form will load, containing a label. If I now move the mouse over a control on the first ...
Tim Kathete Stadler's user avatar
0 votes
3 answers
58 views

Form Visiblity Problem

Form1.button_Click(...) { // Show a dialog form, which runs a method <CheckBalance()> on it's OnLoad Event. var modemDialog = new ModemDialog("COM25"); modemDialog.ShowDialog(); /...
Dohamsg's user avatar
  • 151