Click here to Skip to main content
15,913,610 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: SL3 Resource Dictionaries Pin
Abhinav S17-May-10 7:04
Abhinav S17-May-10 7:04 
GeneralRe: SL3 Resource Dictionaries Pin
#realJSOP17-May-10 7:07
professional#realJSOP17-May-10 7:07 
GeneralRe: SL3 Resource Dictionaries Pin
Abhinav S17-May-10 7:56
Abhinav S17-May-10 7:56 
GeneralRe: SL3 Resource Dictionaries Pin
#realJSOP17-May-10 8:13
professional#realJSOP17-May-10 8:13 
GeneralRe: SL3 Resource Dictionaries Pin
#realJSOP17-May-10 8:55
professional#realJSOP17-May-10 8:55 
GeneralRe: SL3 Resource Dictionaries Pin
Abhinav S17-May-10 16:16
Abhinav S17-May-10 16:16 
GeneralRe: SL3 Resource Dictionaries Pin
blackjack215018-May-10 1:35
blackjack215018-May-10 1:35 
GeneralRe: SL3 Resource Dictionaries Pin
#realJSOP19-May-10 0:09
professional#realJSOP19-May-10 0:09 
QuestionShapes in Rich text box Pin
r i s h a b h s17-May-10 1:46
r i s h a b h s17-May-10 1:46 
AnswerRe: Shapes in Rich text box Pin
r i s h a b h s17-May-10 18:43
r i s h a b h s17-May-10 18:43 
AnswerRe: Shapes in Rich text box Pin
Abhinav S17-May-10 20:00
Abhinav S17-May-10 20:00 
GeneralRe: Shapes in Rich text box Pin
r i s h a b h s18-May-10 6:40
r i s h a b h s18-May-10 6:40 
Questionhow to cache third party images in silverlight . Pin
sandeep.cec14-May-10 22:24
sandeep.cec14-May-10 22:24 
AnswerRe: how to cache third party images in silverlight . Pin
Abhinav S15-May-10 8:09
Abhinav S15-May-10 8:09 
QuestionResizing GridSplitter Pin
kunthavai14-May-10 11:38
kunthavai14-May-10 11:38 
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 

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.