wpf

  1. G

    Deciding Which Is Which Should I Choose? (MVVM or MVC C#?)

    I can't decide which job should I choose? C# MVVM Developer or C# MVC Developer? There are two companies that I should go and work for. The one like Navitaire Accenture Company which uses C# WPF MVVM and the one like many others (e.g Avanade) which uses C# MVC ASP.NET... I mean, I want to...
  2. A

    Mouse restriction in circle

    I want to restrict mouse movement in Circle drawn using Ellipse in WPF. I can restrict mouse movement using ClipCursor function but it takes rect param. How it can be achieved to restrict movement in Circle? Please suggest any solution I need to implement this in my project using WPF.
  3. 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...
  4. 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...
  5. 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)...
  6. 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