1
vote
1answer
18 views
F#: Using INotifyPropertyChanged for data binding
How would one implement INotifyPropertyChanged for use in an F# type?
Thanks!
0
votes
4answers
62 views
Which is good way to bind more than 10000 records with sql?
first way By using java script
or
second way By using Data sourse in asp.net sqldatasourse
which is taking less stress while loading the data.. into webpage
2
votes
2answers
16 views
How does one detect SetBinding sucess or failure in Silverlight?
Simple binding from C#:
Binding binding = new Binding(SourceName);
binding.Mode = BindingMode.TwoWay;
BindingExpressionBase beb = SetBinding(SourceDependencyProperty, bindin …
0
votes
2answers
45 views
Use UIElements as ItemsSource of ListBox in Silverlight
I've noticed that if you have anything deriving from UIElement as items in a ListBox in Silverlight it renders the object as is and isn't paying any attention to settings of Displa …
0
votes
3answers
29 views
WPF DataBinding watch for thrown exceptions
Hi All,
In my model I have lots of properties for different objects and I'm checking the value while setting value for object and if the value is not accepted I will throw an excep …
0
votes
2answers
26 views
How do I update an IValueConverter on CollectionChanged?
Here's a basic example to explain my problem. Let's say I have
ObservableCollection<int> Numbers {get; set;}
and an IValueConverter that returns the sum of Numbers.
Nor …
0
votes
1answer
30 views
Simple Binding of Data from code behind to XAML
Hi,
I am new to WPF concepts. I want to just display a string in a textbox. I tried the following C# code and XAML to bind a string to a TextBox.Text property.
C# code:
public p …
0
votes
1answer
14 views
Linq To Sql and WPF : DeferredLoadingEnabled = false and DataBinding
After using a global Linq to Sql DataContext and having unwanted inserts, I decided to use a detached methodology. I did this through a methods class that serves as a abstraction …
0
votes
1answer
16 views
Custom WPF Control Dependency Property Not Binding to external DP
I'm trying real hard to make this short and easy to read.
I am creating a custom control that has a DP defined (RandomNumber) in the code-behind. The value of this DP is set from a …
0
votes
2answers
28 views
Passing the value of a readonly radgrid column to a stored procedure
I have a radgrid bound to a SqlDataSource that includes a hidden, readonly column that stores a pk. I want to pass the value bound to that column to a stored procedure for Updates …
0
votes
2answers
26 views
TreeView Databind - from c# object?
I would like to databind my TreeView from a data structure. After googling some, I came to a conclusion that writing my own simple Tree structure using List of Nodes would be the …
0
votes
1answer
51 views
how to bind database to crystal report ?
hi
i have C# program, i have DataSet that i want to bind to crystal report.
how to do it ?
thank's in advance
0
votes
1answer
21 views
WPF conditional resource selection
hi all,
I want to change back Color (or any other visual properties) on my control based on a boolean statement made from properties in the datacontext of the object .
let me expl …
0
votes
1answer
14 views
Data Binding in .NET with CSLA BOs
OK, I am having quite an issue with data bindings in .NET.
Some background information, my business object tier is using CSLA v1.0.
And _clientObj is passed in as a parameter as a …
0
votes
3answers
51 views
ASP.NET Repeater and DataBinder.Eval
Hello,
I've got a <asp:Repeater> in my webpage, which is bound to a programatically created dataset.
The purpose of this repeater is to create an index from A-Z, which, when …
