wpf

  1. NiceGirl13

    Question WPF SQL Connection Dialog

    Hello everyone I have started project where i want the user to be able to connect to a SQL server themselves. The reason for this is that the tables might/hopefully be moved from a test server to production server. however the tables names are static, meaning that the connection dialog should...
  2. W

    Question Open a Window from another project in the same solution

    Hi guys! Hope you can help me... :) I have a solution and 2 projects on it (let's name them project A and B). Considering my requisite, project A can't have reference to project B and project B can have reference to project A. Problem: I need to write a code in project A opening a Window from...
  3. sultanuzzaman

    Question Is it possible to load a navigation page without clicking on any button or any event

    I have this following code that acts when there's an error: public void ShowErrorScreen() { NavigationService nav = NavigationService.GetNavigationService(this)); nav.Navigate(new Uri("ErrorMsg.xaml", UriKind.RelativeOrAbsolute)); }But it doesn't seem to be working for "this"...
  4. 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...
  5. 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.
  6. 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...
  7. 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...
  8. 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)...
  9. 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