Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
11answers
393 views

Is it getting to be time for C# to support compile-time macros?

Thus far, Microsoft's C# team has resisted adding formal compile-time macro capabilities to the language. There are aspects of programming with WPF that seem (to me, at least) to be creating some ...
7
votes
1answer
76 views

Why can I access DependencyProperties that are not registered on my DependencyObject?

I'm hoping someone can explain some unexpected behaviour I have come across whilst continuing my exploration of DependencyObjects and DependencyProperties. Given the following simple class: ...
7
votes
1answer
2k views

what does this error mean?

I'm getting this error: Cannot use a DependencyObject that belongs to a different thread than its parent Freezable What does that even mean? Is it in English? Is the parent frozen, or is it just ...
5
votes
3answers
160 views

How is WPF's DependencyObject implemented?

Are there any articles that describe how the DependencyObject class in WPF works "under the hood"? Specifically, I'm curious about how dependency properties are stored and accessed efficiently.
5
votes
1answer
195 views

What use is a DependencyProperty whose ownerType is not a DependencyObject?

I've just started playing with DependencyProperties in WPF and I was wanting to check a couple of thoughts while I get to grips with them. Given the following (and ignoring naming convention for ...
3
votes
2answers
2k views

Enabling direct content creation in XAML on a dependancy object

I have a class CollectionOfThings. As its name suggests its a simple collection of instances of the Thing class. Thing class has a public default constructor and two simple public get, set ...
2
votes
1answer
47 views

List properties of a DependencyObject?

I got a collection of custom DependencyObjects that I created. But I think that it doesn't matter wherever the DependencyObject comes from. The thing is that I'd like the list its properties but when ...
2
votes
3answers
212 views

Is it possible to get x:Name of a DependencyObject (Silverlight)?

I have a DependencyObject (an Interactivity Behavior), and I'd like to get its x:Name (just get, not set) from code. Is it possible? EDIT: Following AnthonyWJones's answer: I've inserted the ...
2
votes
1answer
160 views

How to expose xaml properties?

I created a ComboBox subclass and added my functionality. Now I want to expose external properties of the TextBox for example: <a:MyComboBox SpellCheck.IsEnabled="True" ...
2
votes
1answer
146 views

Is it possible to find out the assembly and file containing a DependencyObject?

I am currently working on a little localization framework for WPF (don't even think about pointing me to locBAML...) and wondered if it was possible to find out the containing assembly of a specified ...
2
votes
3answers
2k views

Databinding on a IValueConverter

Does anybody know if it is possible to do databinding on an IValueConverter based class? I have the following converter: [ValueConversion(typeof(int), typeof(Article))] public class ...
1
vote
1answer
69 views

How do you unit test Silverlight ValueConverters that create DependencyObjects

I have a Silverlight ValueConverter that should take an enum and convert it to a Brush. Something like this simplified example: public object Convert(object value, Type targetType, object parameter, ...
1
vote
2answers
52 views

Filter DependencyObject and DependencyProperties from a DLL/Assembly?

I got the following code to generate a DLL : public class QtObject : DependencyObject { public int speedSimu { get { return (int)GetValue(speedSimuProperty); } set { ...
1
vote
2answers
237 views

Improved IValueConverter — MarkupExtension or DependencyObject?

I saw online 2 different approaches to enhancing an IValueConverter. One of them extended a ValueConverter from MarkupExtension, the other from DependencyObject. I can't extend from both, so I'm ...
1
vote
1answer
134 views

Binding in WPF and Silverlight - how does it actually work?

How does binding work under the hood in WPF and Silverlight? I have implemented INotifyPropertyChanged on my ViewModel objects and also used dependency properties on UI controls. Now, I am aware of ...
1
vote
2answers
248 views

Casting error for UIElement on runtime

I get runtime error when I do this... I have this class... public abstract class AnnObject : DependencyObject and when I do this it compiles fine, but throws a runtime error... AnnObject aa; var ...
1
vote
1answer
287 views

What is the DataContext of a DependencyObject in Silverlight4?

I have read that SL4 introduces the ability to data bind properties on objects that derive from DependencyObjects, where previously data-binding only worked on FrameworkElements or ...
1
vote
1answer
769 views

WPF custom DependencyProperty notify changes

I have a class called MyComponent and it has a DependencyProperty caled BackgroundProperty. public class MyComponent { public MyBackground Background { get { return ...
0
votes
1answer
22 views

Create a DependencyObject that “accepts” direct content

I'm creating a custom time that should be used in an empty XAML file: <windows:BlackAndWhiteWindow x:Class="GSdk.Shared.Windows.TestWindow" ...
0
votes
1answer
103 views

Frustrating error in WPF (.NET 4.0) internals: Hashtable insert failed. Load factor too high

I have built custom Rules Engine, where each element of this engine is a descendant of DependencyObject class, so that it could be described in XAML including support for dependency properties, markup ...
0
votes
2answers
86 views

Can a class derived from DependencyObject marked as serializable?

What des it mean by the following sentence DependencyObjects are not marked as serializable To my knowledge, I can have a class which inherits from DependencyObject...and I can mark it as ...
0
votes
1answer
211 views

DependencyProperty from string

How do I convert a property name (in string) to a dependency property? I have a set of property names, its values in string and a dependency object. Now I want to set these property values to the ...
0
votes
1answer
85 views

Simple databinding IN CODE to a DependencyProperty

My apologies as this is simplistic enough I know the question's been answered but in 30 or so pages, I've yet to find the boiled down problem I'm trying to solve. I'm not yet well practiced in SL and ...
0
votes
2answers
115 views

Bind to DependencyProperty in code

I have an object which is derived from DependencyObject with multiple DependencyProperties. This object is a given and I can not add ValueChanged callbacks within this object. I would like to be ...
0
votes
0answers
61 views

Debugging Project Does not Open Window. Code hanging @SetCurrentValue()

I found that suddenly, when I debug my project, the Window does not open, why is that? I get no errors too Video on Screenr UPDATE: SetCurrentValue() the cause? I found that ...
0
votes
1answer
762 views

How to get property name from the sender object of an INotifyPropertyChanged PropertyChanged event

I have a base DependencyObject class where I have a method that takes an object, gets the properties, and for each property that is a type that implements INotifyPropertyChanged, I add a new ...
0
votes
1answer
1k views

Keeping track of dependency property value changes at global level

I am having a number of controls in my application(which user can add to canvas), each having various properties(mostly dependency properties). User can change its properties through property ...
0
votes
1answer
130 views

Using Linq methods causes missing references to DependencyObject in WindowsBase

I have some c# source that I want to compile using CodeDom within my application (for a plugin) Everything works fine, except if I use a Linq extension function on some of my collections var dict = ...
0
votes
1answer
381 views

Binding to a collection of DependencyObjects in Silverlight 4

As of Silverlight 4 it is possible to data bind against a DependencyObject (instead of a Framework element in previous versions). So far so good, but how do I bind agains a collection of ...
0
votes
1answer
1k views

WPF Binding Confusion: Composite DependencyObject

I have a DependencyObject class composition that looks like the following: public class A : DependencyObject { public AB AB { get { ... } set { ... } } public AB AC { get { ... } set { ... } } } ...