apandit

1,134
reputation
138 views

Registered User

name apandit
member for 1 year
seen Nov 25 at 22:13
website
location Canada
age 20
Boo!
Dec
6
awarded  Mortarboard
Sep
13
awarded  Yearling
Aug
26
revised Good / Cheap / Fast: Which two?
edited tags
Jul
31
comment Binding to a sum of SelectedItems in WPF GridView
It should automatically refresh on selectionChanged since you're using SelectedItems as your binding source. If that doesn't work, you could always try to access the binding and refresh it.
Jul
30
answered Binding to a sum of SelectedItems in WPF GridView
Jul
21
comment interacting with the browser using C#
To clarify your question, do you want to open an instance of a browser with filled in form values? Or do you want to submit form values to a webapp and show the result in the Winform app?
Jul
16
revised CSS and order of styles
warning
Jul
15
answered CSS and order of styles
Jul
2
answered sed: Replace part of a line.
Jun
30
revised How can I find the Month when all I have is the week number in c#
fixed < to be &lt;
Jun
30
comment How can I find the Month when all I have is the week number in c#
it fails for more than that, lol
Jun
30
answered How can I find the Month when all I have is the week number in c#
Jun
28
awarded  Popular Question
Jun
26
accepted WPF Data Binding : enable/disable a control based on content of var?
Jun
26
revised WPF Data Binding : enable/disable a control based on content of var?
added variable binding
Jun
26
comment WPF Data Binding : enable/disable a control based on content of var?
You have to add an OnPropertyChanged to the var then. I've got it binded to a selection change in the List right now. If you want something like, var something = somethingnew; and have that reflected in the UI, you're going to have to make that var a property and implement INotifyPropertyChanged... I'll add this to my post.
Jun
26
accepted WPF - Change a button’s content in a style?
Jun
26
comment WPF ToolBar: how to remove grip and overflow
You could probably do it by overwriting the control template... but I wouldn't recommend it.
Jun
26
comment WPF Data Binding : enable/disable a control based on content of var?
basically, yeah. The button's value changes when the SelectedItem changes. If you want to change it based on something else, bind it to that instead. The most important part is that you're binding a string to the button and using a converter to make it a bool.
Jun
26
comment WPF: How do I prevent tearing with WriteableBitmap?
I concur. BeginInvoke() is asynchronous. Use Invoke() and it should synchronize nicely (though you might notice lag).
Jun
26
answered WPF - Change a button’s content in a style?
Jun
26
answered WPF Data Binding : enable/disable a control based on content of var?
Jun
23
comment Should a .sln be committed to source control?
I believe it's the .SUO file you DON'T want to commit.
Jun
18
revised Observable Collection Property Changed on Item in the Collection
some explanations
Jun
18
answered Observable Collection Property Changed on Item in the Collection
Jun
18
comment Observable Collection Property Changed on Item in the Collection
So, you're binding your OC to a Listbox and have the sortdescription on the listbox?
Jun
18
answered Return Enum From Function C#
Jun
18
revised Refreshing UI with databind in WPF
added bounty and clarified question
Jun
18
revised Installing a program on windows vista dutch version.
edited tags
Jun
17
revised Anonymous method as parameter to BeginInvoke?
fixed
Jun
17
comment Anonymous method as parameter to BeginInvoke?
what library is MethodInvoker from? using System.?
Jun
17
comment Treeview Item Loses Selection When Focus Is Lost
I would assume it's a bug in WPF. Report it perhaps?
Jun
17
comment Anonymous method as parameter to BeginInvoke?
Doesn't work, can't convert type lamda to System.Delegate
Jun
17
answered Anonymous method as parameter to BeginInvoke?
Jun
16
comment Treeview Item Loses Selection When Focus Is Lost
And it seems that double clicking the child element works correctly but not single clicking... :S
Jun
16
comment Treeview Item Loses Selection When Focus Is Lost
Just a little refactoring comment, instead of putting the Selected event in each treeview item, you can: <TreeView Margin="6" TreeViewItem.Selected="TreeViewItem_Selected" />;
Jun
16
comment Refreshing UI with databind in WPF
I've attempted everything but adding the sub1item.CollectionChanged +=... line (which I can't do since my Dictionary's CollectionChanged event is protected). Also, I noticed you used NotifyChange and NotifyPropertyChanged and I assume they were the same... Any other ideas?
Jun
16
revised Refreshing UI with databind in WPF
added xml
Jun
16
comment Refreshing UI with databind in WPF
CustomClass has a Refresh() method that sets sub1item = new ObservableDictionary<..>(); Then gets all the InnerClass items again. However, they're pretty much the same items. I just want to update the ones that are changed. Ie. Percolate up changes.
Jun
16
asked Refreshing UI with databind in WPF
Jun
15
comment string [,] and repeater
Actually, the english you used wasn't too bad. I could understand it (which is why I was able to answer your question). The main problem with your question is you depend on your language to get your intention through. More code samples and some pseudo code would've probably gotten you answers much quicker.
Jun
15
comment string [,] and repeater
2 foreign, one native, yeah.
Jun
15
answered How can I call a static method from a class if all I have is a string of the class name?
Jun
15
comment string [,] and repeater
I second that nomination.
Jun
15
answered string [,] and repeater