A general technique that binds two data/information sources together and maintains them in sync.
0
votes
0answers
6 views
Binding animation duration to slider
On My MainPage I have
<DoubleAnimation Completed="DoubleAnimation_Completed_1"
Storyboard.TargetName="factImage"
Storyboard.TargetProperty="Opacity"
From="0.0" ...
0
votes
0answers
14 views
ListBox not refreshing with BindingSource (multi-thread)
I'm currently learning how multithreading works, so please be sympathetic ;)
In my WPF, there's a ListBox which DataSource is a BindingList.
Some other thread is modifying the DataSource, and the ...
0
votes
0answers
13 views
DataGridViews with Parallel Filtering of Source
I have a collection of businessObjects which implements IBindingListView and extends BindingList(of T). I accomplished this using code directly from:
...
0
votes
1answer
13 views
Building rudimentary data binding with jQuery but variables are not scoping properly
I am attempting to replicate some basic data binding with a view template, from a controller. I am building it using straight JS and jQuery. There is a variable in my controller function I want to ...
4
votes
1answer
25 views
Is the Indexer of an object somehow accessible through its TypeDescriptor?
I am having a hard time obtaining information about an object's indexer through the TypeDescriptor - just to be sure, I mean that kind of thing:
class ComponentWithIndexer
{
public string ...
0
votes
1answer
15 views
Windows phone Binding xaml to class
I'm having problems binding an variable color, which i have defined in a class, such that it can fill an area for me.
<UserControl x:Name="Portugal" x:Class="MiddleAgeWar1.UserControl_Portugal"
...
0
votes
1answer
13 views
Binding properties Content, Background etc in MapItemsControl Pushpin
I have a model:
public class GYPushpin : GYEntity
{
private GeoCoordinate _coordinate;
public GeoCoordinate Coordinate
{
get
{
...
1
vote
1answer
28 views
C# linechart dynamicly databind
So i want to be able to create charts dynamicly for this i created the following class with a method called getChart()
using System;
using System.Collections.Generic;
using System.Linq;
using ...
0
votes
2answers
61 views
Sql query does not bring more than 4 results in a for loop in C#
This code just works looping from 0 to 3. When I increase the variable i to 4 or more it does not bring results. I have almost 700 descriptions to be queried. How can I do that? Here's my code. Thank ...
0
votes
0answers
15 views
How sort Objects in Binding list
I have this two class:
class MovieHouse {
string mhname;
string capacity;
Country country;
...
}
class Country{
string name;
...
}
Classes represent structure in database. I load all MovieHouses ...
0
votes
0answers
39 views
Binding to UserControl property with casting
I have list of UserControls which is binded to ItemsSource of of my TreeView. In TabControl.ItemTemplate I have to bind to Property of my custom UserControl.
I have tried everything, but nothing ...
0
votes
0answers
8 views
QtQuick - Concept of how to pass (hierarchical) data to a custom item
First thing: I’m very unexpired with QML and JavaScript!
I want to have two different GUIs for my application. One for keyboard/mouse based systems and one for touchscreen based systems.
The menu ...
0
votes
2answers
29 views
How do I set a DataTemplate for a WPF TreeView to display all Elements of an List?
I'd like to visualize the following data structure using TreeViews in WPF:
class MyDataContext
{
ICollectionView Outers {get;set;}
//...
}
class Outer
{
string Name {get;set;}
...
0
votes
2answers
38 views
Why does not the data-binding work? (using nested foreach loops)
The problem is that the data-binding doesn't work.
I have an observableArray() containing claims. Each claim has an observableArray() of expenses, which is one item from the ...
-1
votes
1answer
34 views
Best practice for passing SQL and retrieving/manipulating data using VB.NET?
In my recent multi-user database application, there's a lot of retrieving and manipulating database data from different database source types (Oracle, Access, SQL Server). I know the .NET framework ...