<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : Scrollviewer position in XAML composition</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : XAML Snippets : Scrollviewer position in XAML composition]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 20:20:39 +0000</pubDate>
  <lastBuildDate>Mon, 20 Aug 2012 10:47:36 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=19766</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[Scrollviewer position in XAML composition :   We have looked into the XAML...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=19766&amp;PID=68788&amp;title=scrollviewer-position-in-xaml-composition#68788</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 19766<br /><strong>Posted:</strong> 20 August 2012 at 10:47am<br /><br />We have looked into the XAML specification and there is no property for the scroll offset in the markup. This would be an extension and we would like to keep compatiblity with the MS specification.&nbsp; So we added a new MarkupUIElement property to the report record item and a scrollviewer sample to our ReportSample for the next release.]]>
   </description>
   <pubDate>Mon, 20 Aug 2012 10:47:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=19766&amp;PID=68788&amp;title=scrollviewer-position-in-xaml-composition#68788</guid>
  </item> 
  <item>
   <title><![CDATA[Scrollviewer position in XAML composition : The ScrollViewer object has a...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=19766&amp;PID=68770&amp;title=scrollviewer-position-in-xaml-composition#68770</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2676">jpbro</a><br /><strong>Subject:</strong> 19766<br /><strong>Posted:</strong> 17 August 2012 at 11:29am<br /><br />The ScrollViewer object has a HorizontalOffset and VerticalOffset property, but these aren't recognized by the markup pad. I've submitted a support ticket, but I've got almost a dozen open tickets that haven't had responses in ages, so I wouldn't hold my breath.]]>
   </description>
   <pubDate>Fri, 17 Aug 2012 11:29:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=19766&amp;PID=68770&amp;title=scrollviewer-position-in-xaml-composition#68770</guid>
  </item> 
  <item>
   <title><![CDATA[Scrollviewer position in XAML composition : Has anybody any idea or comments...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=19766&amp;PID=68367&amp;title=scrollviewer-position-in-xaml-composition#68367</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6884">AlbertoB</a><br /><strong>Subject:</strong> 19766<br /><strong>Posted:</strong> 31 May 2012 at 5:23am<br /><br />Has anybody any idea or comments about this issue?<DIV>Am I&nbsp;asking something crazy?</DIV><DIV>Any site to look for a solution?</DIV><DIV>&nbsp;</DIV><DIV>AB.</DIV>]]>
   </description>
   <pubDate>Thu, 31 May 2012 05:23:17 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=19766&amp;PID=68367&amp;title=scrollviewer-position-in-xaml-composition#68367</guid>
  </item> 
  <item>
   <title><![CDATA[Scrollviewer position in XAML composition : Hi there,  I have this XAML...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=19766&amp;PID=68273&amp;title=scrollviewer-position-in-xaml-composition#68273</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6884">AlbertoB</a><br /><strong>Subject:</strong> 19766<br /><strong>Posted:</strong> 17 May 2012 at 12:21pm<br /><br />Hi there,<DIV>&nbsp;</DIV><DIV>I have this XAML composition that works perfectly in Codejock MarkupPad</DIV><DIV>&nbsp;</DIV><DIV>&lt;Page xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'&gt;<BR>&nbsp; &lt;ScrollViewer x:Name='scroll' TextBlock.FontSize="12" MaxHeight='60' VerticalScrollBarVisibility='Auto'&gt;<BR>&lt;StackPanel&gt;<BR>&lt;CheckBox Tag='tag1' IsChecked='true'&gt;Option1&lt;/CheckBox&gt;<BR>&lt;CheckBox Tag='tag2' IsChecked='true'&gt;Option2&lt;/CheckBox&gt;<BR>&lt;CheckBox Tag='tag3' IsChecked='true'&gt;Option3&lt;/CheckBox&gt;<BR>&lt;CheckBox Tag='tag9' IsChecked='true'&gt;LastOption&lt;/CheckBox&gt;<BR>&lt;/StackPanel&gt;<BR>&lt;/ScrollViewer&gt;<BR>&lt;/Page&gt;</DIV><DIV>&nbsp;</DIV><DIV>My question is: </DIV><DIV>&nbsp;</DIV><DIV>Is it possible to stablish an initial&nbsp;vertical scroll position different from 0,&nbsp;any way that works in MarkupPad as well?</DIV><DIV>&nbsp;</DIV><DIV>I'm using that XAML code&nbsp;as cell text in a report control with Markup enabled. If is not possible to position the scroll directly through tags or porperties... how should I do that?</DIV><DIV>&nbsp;</DIV><DIV>Thank you,</DIV><DIV>AB.</DIV>]]>
   </description>
   <pubDate>Thu, 17 May 2012 12:21:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=19766&amp;PID=68273&amp;title=scrollviewer-position-in-xaml-composition#68273</guid>
  </item> 
 </channel>
</rss>