Click here to Skip to main content
15,890,897 members
Home / Discussions / WPF
   

WPF

 
QuestionWpf doesnt recognize my xmlns for User Control Pin
tomr126-Jun-13 11:31
tomr126-Jun-13 11:31 
AnswerRe: Wpf doesnt recognize my xmlns for User Control Pin
tomr126-Jun-13 17:48
tomr126-Jun-13 17:48 
AnswerRe: Wpf doesnt recognize my xmlns for User Control Pin
Abhinav S26-Jun-13 18:31
Abhinav S26-Jun-13 18:31 
GeneralRe: Wpf doesnt recognize my xmlns for User Control Pin
tomr127-Jun-13 8:20
tomr127-Jun-13 8:20 
GeneralRe: Wpf doesnt recognize my xmlns for User Control Pin
Meshack Musundi3-Jul-13 1:02
professionalMeshack Musundi3-Jul-13 1:02 
Questionwindowmediasdk for silverlight Pin
brodcasting26-Jun-13 0:24
brodcasting26-Jun-13 0:24 
QuestionDraging Grids in WPF Pin
tomr125-Jun-13 16:06
tomr125-Jun-13 16:06 
AnswerRe: Draging Grids in WPF Pin
sorawit amorn27-Jun-13 11:25
sorawit amorn27-Jun-13 11:25 
Canvas would allow your costume grid to be drag-able.
To add Grid on to Canvas :
C#
var canvas = new Canvas();
var grid = new YourCustomeGrid();
canvas.Children.Add(grid);

To set grid position on the canvas :
C#
grid.SetValue(Canvas.TopProperty, 20.0);
grid.SetValue(Canvas.LeftProperty, 20.0);

Then you just have to Add Eventhandler for your control to change the position when your drag your mouse.
GeneralRe: Draging Grids in WPF Pin
tomr11-Jul-13 15:44
tomr11-Jul-13 15:44 
GeneralRe: Draging Grids in WPF Pin
sorawit amorn3-Jul-13 5:32
sorawit amorn3-Jul-13 5:32 
AnswerRe: Draging Grids in WPF Pin
sorawit amorn3-Jul-13 5:33
sorawit amorn3-Jul-13 5:33 
Question[SOLVED] WPF Combobox background color Pin
Saksida Bojan22-Jun-13 7:31
Saksida Bojan22-Jun-13 7:31 
AnswerRe: WPF Combobox background color Pin
Mycroft Holmes22-Jun-13 13:43
professionalMycroft Holmes22-Jun-13 13:43 
GeneralRe: WPF Combobox background color Pin
Saksida Bojan22-Jun-13 20:43
Saksida Bojan22-Jun-13 20:43 
GeneralRe: WPF Combobox background color Pin
Mycroft Holmes22-Jun-13 21:48
professionalMycroft Holmes22-Jun-13 21:48 
GeneralRe: WPF Combobox background color Pin
Saksida Bojan22-Jun-13 23:09
Saksida Bojan22-Jun-13 23:09 
AnswerRe: WPF Combobox background color Pin
Abhinav S22-Jun-13 18:36
Abhinav S22-Jun-13 18:36 
GeneralRe: WPF Combobox background color Pin
Saksida Bojan22-Jun-13 20:46
Saksida Bojan22-Jun-13 20:46 
GeneralRe: WPF Combobox background color Pin
Abhinav S23-Jun-13 17:29
Abhinav S23-Jun-13 17:29 
QuestionCan attached behaviors have knowledge of ViewModels? Pin
sthotakura21-Jun-13 6:29
sthotakura21-Jun-13 6:29 
AnswerRe: Can attached behaviors have knowledge of ViewModels? Pin
Abhinav S22-Jun-13 18:32
Abhinav S22-Jun-13 18:32 
GeneralRe: Can attached behaviors have knowledge of ViewModels? Pin
sthotakura25-Jun-13 3:47
sthotakura25-Jun-13 3:47 
QuestionButton disables when bind command Pin
maxRazar20-Jun-13 18:27
maxRazar20-Jun-13 18:27 
AnswerRe: Button disables when bind command Pin
Pete O'Hanlon20-Jun-13 20:21
mvePete O'Hanlon20-Jun-13 20:21 
QuestionError in Wpf Pin
Nick_Frenk16-Jun-13 21:57
Nick_Frenk16-Jun-13 21:57 

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.