Tagged Questions

10
votes
4answers
3k views

WPF: How to bind RadioButtons to an enum?

I've got an enum like this: public enum MyLovelyEnum { FirstSelection, TheOtherSelection, YetAnotherOne }; I got a property in my DataContext: public MyLovelyEnum VeryLovelyEnum { get; set; …
8
votes
5answers
2k views

C# early and late binding

I'm trying to get my head around when early/late binding occurs in C#. Non-virtual methods are always early bound. Virtual methods are always late bound: the compiler inserts extra code to resolve …
7
votes
3answers
4k views

WPF DataTrigger Where Value IS ***NOT*** Null?

I know that I can make a setter that checks to see if a value is NULL and do something. Example: <TextBlock> <TextBlock.Style> <Style> <Style.Triggers> …
6
votes
3answers
313 views

Python/C++ Binding Library comparison

I feel as though this question is a duplicate, but I haven't found one on the subject (specifically) yet so I'll ask anyway: What Python/C++ binding libraries would you recommend and why? In …
6
votes
7answers
261 views

How do you bind a language (python, for example) to another (say, C++)?

I'm far from a python expert but I hear this one all the time, about its C/C++ bindings. How does this concept work, and how does Python (and Java) bind to C-based APIs like OpenGL? This stuff has …
6
votes
3answers
4k views

WPF: “Items collection must be empty before using ItemsSource.”

I'm trying to get images to display in a WPF ListView styled like a WrapPanel as described in this old ATC Avalon Team article: How to Create a Custom View. When I try to populate the ListView with …
6
votes
4answers
3k views

What is the WPF XAML Data Binding equivalent of String.Format?

Or, to be more clear, how can I format a block of text (in my case, to be included within a tooltip) such that some portions of the text come from bound values. In plain C# I would use: …
6
votes
6answers
3k views

JavaScript Callback Scope

I'm having some trouble with plain old JavaScript (no frameworks) in referencing my object in a callback function. function foo(id) { this.dom = document.getElementById(id); this.bar = 5; …
5
votes
2answers
134 views

Let vs. Binding in Clojure

I understand that they're different since one works for setting *compile-path* and one doesn't. However, I need help with why they're different. let creates a new scope with the given bindings, but …
5
votes
4answers
998 views

WPF Binding only part of a label

How would one achieve mixing bound values with constant text in a WPF bound control? For example, say I have a form displaying orders, and I want a label that displays text like "Order ID 1234". …
5
votes
9answers
712 views

Is there SQL parameter binding for arrays?

Is there a standard way to bind arrays (of scalars) in a SQL query? I want to bind into an IN clause, like so: SELECT * FROM junk WHERE junk.id IN (?); I happen to be using Perl::DBI which coerces …
5
votes
2answers
864 views

How to bind a string list to a datagrid?

it looks pretty easy and there must be a way to do it: i have a simple List and i would like it to be displayed in a column in dataGrid. if these were some more complex objects i would know how to set …
5
votes
4answers
2k views

Early binding vs. late binding: what are the comparative benefits and disadvantages?

When discussing the evolution of computer languages, Alan Kay says that the single most important attribute of his Smalltalk is late binding; it gives the language its malleability and extensibility, …
5
votes
2answers
269 views

Java Binding Vs Manually Defining Classes

Hi, I have a XML schema that I will need to create Java classes for. It is not a particularly large schema, I'd say it will result in around 20 classes. I am trying to weigh up whether to use an …
5
votes
1answer
611 views

Complex model binding to a list

I have been trying out the NameValueDeserializer from MVCContrib, which will take a IList as a parameter to a controller and bind a form and its elements to it, but I was just wondering if MVC Beta …

1 2 3 4 5 44 next
15 30 50 per page