21
votes
9answers
3k views
INotifyPropertyChanged vs. DependencyProperty in ViewModel
When implementing the ViewModel in a Model-View-ViewModel architecture WPF application there seem to be two major choices how to make it databindable. I have seen implementations that use …
14
votes
8answers
895 views
I’m new to .NET - what should I concentrate on and what should I ignore?
So, I've had a fair amount of experience programming database driven web apps using php and coldfusion (not together, at different times) and I'm starting to look into the asp.net world (I have a …
11
votes
4answers
462 views
When should I use # and = in ASP.NET controls?
I have been using ASP.NET for years, but I can never remember when using the # and = are appropriate.
For example:
<%= Grid.ClientID %>
or
<%# Eval("FullName")%>
Can someone explain …
10
votes
2answers
2k views
Dictionary<T> of List<T> and ListViews in ASP.NET
Preamble
I'm asking this question because even though I've read through a lot of ListView resources, I'm still not 'getting' it.
Background
I have a bunch of Foo's that have a list of items …
10
votes
8answers
1k views
WPF Databind Before Saving
In my WPF application, I have a number of databound TextBoxes. The UpdateSourceTrigger for these bindings is LostFocus. The object is saved using the File menu. The problem I have is that it is …
9
votes
5answers
2k views
What is the best way to populate a WPF combo box with all items from a given enum?
The title pretty much stays it all. Say I have an enum with four values:
public enum CompassHeading
{
North,
South,
East,
West
}
What XAML would be required to have a ComboBox be …
9
votes
7answers
2k views
Bind to a method in WPF?
How do you bind to an objects method in this scenario in WPF?
public class RootObject
{
public string Name { get; }
public ObservableCollection<ChildObject> GetChildren() {...}
}
…
8
votes
3answers
689 views
How to detect broken WPF Data binding?
While trying to answer a question in the vicinity 'Unit Testing WPF Bindings' I had the following niggling question..
What's the best way to find if you have WPF Data Binding wiring setup incorrectly …
8
votes
4answers
1k views
Difference between <%# Bind(””) %> and <%# Eval(””) %>
I have seen bind and eval used interchangeably especially in gridviews. What is the difference?
7
votes
7answers
531 views
When should I open and close a connection to SQL Server
I have a simple static class with a few methods in it. Each of those methods open a SqlConnection, query the database and close the connection. This way, I am sure that I always close the connection …
7
votes
4answers
784 views
WinForms multi-threaded databinding scenario, best practice?
Hi,
I'm currently designing/reworking the databinding part of an application that makes heavy use of winforms databinding and updates coming from a background thread (once a second on > 100 records).
…
7
votes
2answers
338 views
Binding IList<IMyInterfaceType> doesn’t display members of Interfaces that IMyInterface inherits
I'm binding IList to a GridView. IMyInterface looks like
public interface IMyInterface: IHasTotalHours, IHasLines
{
DateTime GoalStartDate { get; set; }
DateTime GoalEndDate { get; set; }
}
…
7
votes
1answer
4k views
WPF: ListBox vs. ListView - how to choose for data binding
I'm considering either a ListBox or a ListView for a WPF application. It seems either supports data binding and item templates. My application has a simple list of items that I intend to be able to …
7
votes
5answers
623 views
For those of you using SubSonic, what kind of performance are you seeing in large applications?
I've used SubSonic in a few POC projects, but nothing large. It's so easy to use, and it's possible to abstract away the fact that it uses the active record pattern (can move it toward a more domain …
7
votes
3answers
672 views
INotifyPropertyChanging and validations: when do I raise PropertyChanging?
INotifyPropertyChanged is fairly self explanatory and I think I'm clear on when to raise that one (i.e. when I've finished updating the values).
If I implement INotifyPropertyChanging I'm tending to …
