Andy

5,973
reputation
438 views

Registered User

name Andy
member for 1 year
seen 5 hours ago
website
location Detroit, MI
age 30
I primarily use C++ and C#, but I dabble in HTML/JavaScript and Objective-C from time to time.
14h
answered VisualStudio C++ Linker problem with template classes
1d
answered “Cannot convert string to ImageSource.” How can I do this?
Dec
10
comment How to resolve linking error for GetSystemMetrics()?
wmbase.lib doesn't exist because that is used by Windows CE, which is for embedded/mobile development.
Dec
2
revised C# property, is it possible to get around defining get without defining set (no backing variable)?
fixed compile error
Dec
2
comment C# property, is it possible to get around defining get without defining set (no backing variable)?
I didn't compile my code yesterday, but I did today and got the error. I fixed it by calling the default parameterless constructor.I'll update the code in my answer.
Dec
2
accepted C# property, is it possible to get around defining get without defining set (no backing variable)?
Dec
1
comment C# property, is it possible to get around defining get without defining set (no backing variable)?
@ChaosPandion that would work, too. I was thinking with my approach that this would allow the user of the class to get either the original or rounded values, if necessary. Your approach might be more in line with the name of the class, though.
Dec
1
answered C# property, is it possible to get around defining get without defining set (no backing variable)?
Nov
12
answered Interface Inheritance in C++
Nov
11
accepted Should I alloc an NSMUtableArray instance variable?
Nov
11
answered Should I alloc an NSMUtableArray instance variable?
Nov
11
revised Background Worker Updates a ProgressBar partially or not all Then Bombs Out !!!
updated based on inner exception
Nov
10
answered Background Worker Updates a ProgressBar partially or not all Then Bombs Out !!!
Nov
10
accepted DllGetVersion not giving expected results under Windows 7
Nov
9
answered DllGetVersion not giving expected results under Windows 7
Nov
9
revised DllGetVersion not giving expected results under Windows 7
fixed code formatting
Nov
9
comment Property binding across controls in WPF
As @Groky said, it would be helpful to see the code for the SelectedItem property.
Nov
9
comment “Member modifier ‘static’ must precede the member type and name” Error C#
Which line is line 21? It might work better to only show the relevant snippet of code that is causing the problem.
Nov
9
answered Is VS2008 Written in c#/.net
Oct
8
answered objective-c primitive arrays
Oct
8
answered Advanced combobox binding from code
Sep
30
answered Can somone give example of Dependency Property in ViewModel
Sep
30
accepted What is the XAML syntax for setting a Trigger on a Label?
Sep
30
accepted In XAML TabControl, how to set the style of the focused tab header?
Sep
25
accepted VC (win32) or WPF for developing a text editor
Sep
24
awarded  Nice Answer
Sep
24
answered C++ Passing a class as a parameter
Sep
22
accepted Global PreviewKeyDown handler vs local PreviewKeyDown handler
Sep
22
comment Global PreviewKeyDown handler vs local PreviewKeyDown handler
I think that would work, but I'm not sure. It's definitely worth a try.
Sep
22
comment Unable to set initial value when databinding combobox to Dictionary<char,string>
You should mark this answer as accepted if it answered your question so that the question no longer shows up as not having an accepted answer.
Sep
22
answered Unable to set initial value when databinding combobox to Dictionary<char,string>
Sep
22
comment WPF Take screenshot from other thread than main thread
Are you sure that it's the screenshot code that's failing? Could it be possible that you're updating the WPF UI from the non-UI thread, and that is raising the exception?
Sep
22
answered Global PreviewKeyDown handler vs local PreviewKeyDown handler
Sep
21
answered Get X Y coordinates of elements within an InkCanvas in WPF
Sep
19
answered Can I modify this generics method to work without losing (my religion) the usage-style I want?
Sep
17
comment VC (win32) or WPF for developing a text editor
The nice thing about WPF is that if it doesn't have a feature built in, it's very easy to add it yourself. IMO it's much easier to make a complex and pretty UI in WPF than in Win32. Maybe do some small test projects in WPF to see if it can do what you need to do?
Sep
16
answered VC (win32) or WPF for developing a text editor
Sep
15
answered How can I override TreeViewItem in WPF to allow asynchronous children loading?
Sep
15
comment WPF Mixing Bound and Fixed text in a TextBox
+1 for StringFormat. Agree with @Pavel - don't create a property with this text in it.
Sep
15
answered Eat MouseDown event after closing a WPF menu
Sep
14
accepted WPF TreeView doesnt display Object Hierarchy
Sep
13
comment WPF TreeView doesnt display Object Hierarchy
Could you post the updated code? That might help to debug the issue.
Sep
13
comment WPF TreeView doesnt display Object Hierarchy
@David: I fixed that to avoid confusion.
Sep
13
revised WPF TreeView doesnt display Object Hierarchy
WCF -> WPF
Sep
13
answered WPF TreeView doesnt display Object Hierarchy
Sep
10
comment How to select File Menu Items using Keyboard in WPF and C#?
Yes, that is correct. If you search for ICommand on MSDN, I think it might have some samples of how to set this up.
Sep
10
accepted How to select File Menu Items using Keyboard in WPF and C#?
Sep
10
answered How to select File Menu Items using Keyboard in WPF and C#?
Sep
6
answered Does Windows7 uses WPF ?
Sep
6
comment MVVM: Binding to ListBox.SelectedItem?
To help you find these problems sooner, if you debug your app you should see a WPF binding error in the Output window of Visual Studio, indicating that the property "Selectedtem" doesn't exist. Hopefully that would help you to track down this sort of error quicker in the future.