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

WPF

 
GeneralRe: SL, WPF, ASP.NET or ASP MVC Pin
ToddHileHoffer14-Jan-11 4:50
ToddHileHoffer14-Jan-11 4:50 
AnswerRe: SL, WPF, ASP.NET or ASP MVC Pin
Abhinav S13-Jan-11 5:59
Abhinav S13-Jan-11 5:59 
GeneralRe: SL, WPF, ASP.NET or ASP MVC Pin
ToddHileHoffer13-Jan-11 8:46
ToddHileHoffer13-Jan-11 8:46 
QuestionAdorners and ScrollViewer don't get along Pin
astibich210-Jan-11 8:45
astibich210-Jan-11 8:45 
AnswerRe: Adorners and ScrollViewer don't get along Pin
SledgeHammer0110-Jan-11 17:18
SledgeHammer0110-Jan-11 17:18 
GeneralRe: Adorners and ScrollViewer don't get along Pin
astibich211-Jan-11 11:07
astibich211-Jan-11 11:07 
GeneralRe: Adorners and ScrollViewer don't get along Pin
SledgeHammer0111-Jan-11 12:45
SledgeHammer0111-Jan-11 12:45 
GeneralRe: Adorners and ScrollViewer don't get along Pin
astibich211-Jan-11 13:18
astibich211-Jan-11 13:18 
You're a genius!! I rewrote the GetAdornerLayer function to be this:

public AdornerLayer GetAdornerLayer(Visual visual)
{
if (visual == null)
{
throw new ArgumentNullException("visual");
}
for (Visual visual2 = VisualTreeHelper.GetParent(visual) as Visual; visual2 != null; visual2 = VisualTreeHelper.GetParent(visual2) as Visual)
{
if (visual2 is AdornerDecorator)
{
return ((AdornerDecorator)visual2).AdornerLayer;
}
//if (visual2 is ScrollContentPresenter)
//{
//return ((ScrollContentPresenter)visual2).AdornerLayer;
//}
}
return null;
}

Works like a charm!! Thanks for your help.

Aaron
GeneralRe: Adorners and ScrollViewer don't get along Pin
SledgeHammer0112-Jan-11 6:23
SledgeHammer0112-Jan-11 6:23 
Questionexpose windows service method to silverlight Pin
arkiboys10-Jan-11 6:18
arkiboys10-Jan-11 6:18 
AnswerRe: expose windows service method to silverlight Pin
Ray Cassick10-Jan-11 6:29
Ray Cassick10-Jan-11 6:29 
GeneralRe: expose windows service method to silverlight Pin
arkiboys10-Jan-11 10:24
arkiboys10-Jan-11 10:24 
QuestionSilver lights tools for Visual Studio 2008 [Solved] Pin
εїзεїзεїз8-Jan-11 19:22
εїзεїзεїз8-Jan-11 19:22 
AnswerRe: Silver lights tools for Visual Studio 2008 [Solved] Pin
εїзεїзεїз8-Jan-11 20:49
εїзεїзεїз8-Jan-11 20:49 
QuestionStop Multiple storyboards Pin
wlxl8-Jan-11 5:43
wlxl8-Jan-11 5:43 
AnswerRe: Stop Multiple storyboards Pin
Abhinav S8-Jan-11 20:59
Abhinav S8-Jan-11 20:59 
QuestionWPF, ASP.NET, Silverlight SSO Pin
javawizard@gmail.com7-Jan-11 6:09
javawizard@gmail.com7-Jan-11 6:09 
AnswerRe: WPF, ASP.NET, Silverlight SSO Pin
#realJSOP8-Jan-11 0:34
mve#realJSOP8-Jan-11 0:34 
AnswerRe: WPF, ASP.NET, Silverlight SSO Pin
RichardGrimmer10-Jan-11 4:00
RichardGrimmer10-Jan-11 4:00 
QuestionNeed Help: Is it possible to create such ComboBox UI? Pin
Kunal Chowdhury «IN»6-Jan-11 7:09
professionalKunal Chowdhury «IN»6-Jan-11 7:09 
AnswerRe: Need Help: Is it possible to create such ComboBox UI? Pin
SledgeHammer016-Jan-11 16:17
SledgeHammer016-Jan-11 16:17 
GeneralRe: Need Help: Is it possible to create such ComboBox UI? Pin
Kunal Chowdhury «IN»7-Jan-11 0:42
professionalKunal Chowdhury «IN»7-Jan-11 0:42 
AnswerRe: Need Help: Is it possible to create such ComboBox UI? Pin
Abhinav S7-Jan-11 16:47
Abhinav S7-Jan-11 16:47 
GeneralRe: Need Help: Is it possible to create such ComboBox UI? Pin
Kunal Chowdhury «IN»7-Jan-11 17:11
professionalKunal Chowdhury «IN»7-Jan-11 17:11 
AnswerRe: Need Help: Is it possible to create such ComboBox UI? Pin
Abhinav S7-Jan-11 17:20
Abhinav S7-Jan-11 17:20 

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.