Click here to Skip to main content
15,885,278 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Resizing GridSplitter Pin
AspDotNetDev14-May-10 12:51
protectorAspDotNetDev14-May-10 12:51 
AnswerRe: Resizing GridSplitter Pin
AspDotNetDev14-May-10 12:56
protectorAspDotNetDev14-May-10 12:56 
GeneralRe: Resizing GridSplitter Pin
kunthavai14-May-10 23:04
kunthavai14-May-10 23:04 
QuestionC# WPF Developer needed in Philadelphia Pin
Ben Cadbury14-May-10 10:24
Ben Cadbury14-May-10 10:24 
AnswerRe: C# WPF Developer needed in Philadelphia Pin
Richard MacCutchan14-May-10 10:27
mveRichard MacCutchan14-May-10 10:27 
QuestionCreating a resize effect Pin
WebMaster14-May-10 7:26
WebMaster14-May-10 7:26 
AnswerRe: Creating a resize effect Pin
AspDotNetDev14-May-10 12:44
protectorAspDotNetDev14-May-10 12:44 
GeneralRe: Creating a resize effect Pin
WebMaster14-May-10 21:33
WebMaster14-May-10 21:33 
Hello,

Thanks for the links. However now I am stuck. This code doesn't do anything - my lines just keeps not being visible.
double left = horizontalLineContainer.Margin.Left;
double top = horizontalLineContainer.Margin.Top;
double right = horizontalLineContainer.Margin.Right;
double bottom = horizontalLineContainer.Margin.Bottom;
horizontalLineContainer.Margin = new Thickness(left, top, left, bottom);
ThicknessAnimation animation = new ThicknessAnimation();
animation.Duration = new TimeSpan(0, 0, 2);
animation.From = horizontalLineContainer.Margin;
animation.To = new Thickness(left, top, right, bottom);
Storyboard.SetTarget(animation, horizontalLineContainer);
Storyboard.SetTargetProperty(animation, new PropertyPath(Grid.MarginProperty));
Storyboard storyboard = new Storyboard();
storyboard.Children.Add(animation);
storyboard.Begin();


Thanks,
Theo
GeneralRe: Creating a resize effect Pin
WebMaster15-May-10 1:52
WebMaster15-May-10 1:52 
GeneralRe: Creating a resize effect Pin
AspDotNetDev17-May-10 17:06
protectorAspDotNetDev17-May-10 17:06 
QuestionIntercepting OrigionalSource Pin
Tristan Rhodes13-May-10 10:55
Tristan Rhodes13-May-10 10:55 
AnswerRe: Intercepting OrigionalSource Pin
Abhinav S13-May-10 18:41
Abhinav S13-May-10 18:41 
AnswerRe: Intercepting OrigionalSource Pin
#realJSOP14-May-10 1:56
mve#realJSOP14-May-10 1:56 
GeneralRe: Intercepting OrigionalSource Pin
Tristan Rhodes14-May-10 10:36
Tristan Rhodes14-May-10 10:36 
GeneralRe: Intercepting OrigionalSource Pin
#realJSOP15-May-10 4:07
mve#realJSOP15-May-10 4:07 
GeneralRe: Intercepting OrigionalSource Pin
Tristan Rhodes17-May-10 6:24
Tristan Rhodes17-May-10 6:24 
QuestionWPF Hyperlink Question Pin
Kevin Marois13-May-10 10:53
professionalKevin Marois13-May-10 10:53 
AnswerRe: WPF Hyperlink Question Pin
Venkatesh Mookkan13-May-10 19:53
Venkatesh Mookkan13-May-10 19:53 
GeneralRe: WPF Hyperlink Question Pin
Kevin Marois14-May-10 6:12
professionalKevin Marois14-May-10 6:12 
QuestionAdding hyperlink button column in silverlight grid from codebehind? Pin
mittalpa13-May-10 8:19
mittalpa13-May-10 8:19 
AnswerRe: Adding hyperlink button column in silverlight grid from codebehind? Pin
#realJSOP13-May-10 8:52
mve#realJSOP13-May-10 8:52 
QuestionSilverlight 4 Grid in Code. Access Row Background Pin
Paul Shearing13-May-10 6:45
Paul Shearing13-May-10 6:45 
AnswerRe: Silverlight 4 Grid in Code. Access Row Background Pin
Abhinav S13-May-10 18:51
Abhinav S13-May-10 18:51 
QuestionWPF Rotate transform issue Pin
Shane555513-May-10 5:20
Shane555513-May-10 5:20 
AnswerRe: WPF Rotate transform issue Pin
Insincere Dave13-May-10 6:07
Insincere Dave13-May-10 6:07 

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.