Click here to Skip to main content
15,894,405 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Data Access for dummies... Pin
Vimalsoft(Pty) Ltd12-Apr-11 21:25
professionalVimalsoft(Pty) Ltd12-Apr-11 21:25 
GeneralRe: Data Access for dummies... Pin
Johnny J.12-Apr-11 21:51
professionalJohnny J.12-Apr-11 21:51 
GeneralRe: Data Access for dummies... Pin
Vimalsoft(Pty) Ltd12-Apr-11 22:01
professionalVimalsoft(Pty) Ltd12-Apr-11 22:01 
AnswerRe: Data Access for dummies... Pin
V.13-Apr-11 0:41
professionalV.13-Apr-11 0:41 
QuestionMaster/Detail works but why ? and more Pin
Jean-Louis Leroy11-Apr-11 23:19
Jean-Louis Leroy11-Apr-11 23:19 
QuestionBinding List of Objects in CommandParameter Pin
NTheOne10-Apr-11 23:30
NTheOne10-Apr-11 23:30 
AnswerRe: Binding List of Objects in CommandParameter Pin
Abhinav S11-Apr-11 1:50
Abhinav S11-Apr-11 1:50 
QuestionPolyline rendering error in silverlight Pin
chenjch10-Apr-11 5:47
chenjch10-Apr-11 5:47 
In silverlight, drawing a line, if zooming in it,the polyline will be deformation,a moving line will appear.

You can use bingmap for example.
MapPolyline line = new MapPolyline();
            line.Stroke = new SolidColorBrush( Colors.Brown );
            line.StrokeThickness = 3;
            line.Locations = new LocationCollection();
            double lon = 114.219340787406, lat = 23.0518068854053;
            for ( int i = 0 ; i < 100 ; i++ )
            {
                int k = 1;
                if ( i % 2 == 0 )
                {
                    k = -1;
                }
                Location location = new Location( lat + k * 0.03, lon + 0.02 * i );
                line.Locations.Add( location );
            }

            this.myMapLayer.Children.Add( line );


When you move the map amplifier to level 18th , moves to the line polyline, it will appear a line. And this line will move where map change.

How to solve this problem.
QuestionWPF/VB.NET Memory Leaks - reproducible, when creating multiple RichText controls in a WPF form. Grrrrr! Pin
JohnyPoo9-Apr-11 14:54
JohnyPoo9-Apr-11 14:54 
QuestionMVVM : Assign ItemSource in View's Code Behind Pin
NTheOne8-Apr-11 23:56
NTheOne8-Apr-11 23:56 
AnswerRe: MVVM : Assign ItemSource in View's Code Behind Pin
SledgeHammer019-Apr-11 8:10
SledgeHammer019-Apr-11 8:10 
GeneralRe: MVVM : Assign ItemSource in View's Code Behind Pin
NTheOne10-Apr-11 18:15
NTheOne10-Apr-11 18:15 
GeneralRe: MVVM : Assign ItemSource in View's Code Behind Pin
Mycroft Holmes10-Apr-11 18:29
professionalMycroft Holmes10-Apr-11 18:29 
AnswerRe: MVVM : Assign ItemSource in View's Code Behind Pin
Abhinav S10-Apr-11 18:47
Abhinav S10-Apr-11 18:47 
QuestionGet Data from ViewModel in Code behind using MVVM Pin
NTheOne8-Apr-11 21:58
NTheOne8-Apr-11 21:58 
AnswerRe: Get Data from ViewModel in Code behind using MVVM Pin
Mycroft Holmes8-Apr-11 22:22
professionalMycroft Holmes8-Apr-11 22:22 
AnswerRe: Get Data from ViewModel in Code behind using MVVM Pin
Abhinav S8-Apr-11 22:35
Abhinav S8-Apr-11 22:35 
AnswerRe: Get Data from ViewModel in Code behind using MVVM Pin
SledgeHammer019-Apr-11 8:07
SledgeHammer019-Apr-11 8:07 
QuestionChange the display of a combobox control into hyperlink Pin
Rocky237-Apr-11 20:57
Rocky237-Apr-11 20:57 
AnswerRe: Change the display of a combobox control into hyperlink Pin
Mycroft Holmes7-Apr-11 22:20
professionalMycroft Holmes7-Apr-11 22:20 
AnswerRe: Change the display of a combobox control into hyperlink Pin
SledgeHammer018-Apr-11 7:57
SledgeHammer018-Apr-11 7:57 
QuestionDataGrid CellTemplate / CellEditingTemplate Pin
eddieangel7-Apr-11 9:31
eddieangel7-Apr-11 9:31 
AnswerRe: DataGrid CellTemplate / CellEditingTemplate Pin
SledgeHammer017-Apr-11 14:05
SledgeHammer017-Apr-11 14:05 
AnswerRe: DataGrid CellTemplate / CellEditingTemplate Pin
Mycroft Holmes7-Apr-11 14:36
professionalMycroft Holmes7-Apr-11 14:36 
GeneralRe: DataGrid CellTemplate / CellEditingTemplate Pin
eddieangel8-Apr-11 6:14
eddieangel8-Apr-11 6:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.