wpf

  1. I

    MVVM Binding Textbox to Class Property in WPF

    I need help binding a textbox to a class property.....I am working in a WPF application using the MVVM design Pattern. I have created a few classes to do this. I have a Customer class public class Customer : BaseModel { private string _customerName; public string...
  2. A

    Question How can I access webpage text data and store it within a text block in my .WPF?

    Hello, I am very new to C# and coding in general. I wanted to connect to a commonly used website/webpage: IMDB, Avengers 2 and essentially take some text from that page, store it within a string, and then print that out within a text block. So I gave it a go, you'll probably cringe but oh...
  3. A

    Question Remove check box column from datagridview when clear datagridview

    i have created datagridview dynamically with check box column,once i refresh my datagrid its removes all data except checkbox column,below code for adding checkbox column in datagrid DataGridViewCheckBoxColumn chk = new DataGridViewCheckBoxColumn(); dataGridView1.Columns.Add(chk)...
  4. C

    Question How to turn on multiple computers remotely?

    Hey was just wondering if anyone out there knows how to turn on multiple computers remotely by the click of a button along with a listbox of all computer names. I have already create one that works for turning computers off but not to sure about how to turn them on. Thanks
Back
Top Bottom