<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: How Do I Make a ListView or a ScrollViewer Left Handed?</title>
	<link>http://www.designerwpf.com/2008/04/18/how-do-i-make-a-listview-or-a-scrollviewer-left-handed/</link>
	<description>Matthias Shapiro's WPF &#38; Silverlight Blog - Because Developers Get All The Good Blogs</description>
	<pubDate>Sun, 12 Oct 2008 18:59:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: Matthias Shapiro</title>
		<link>http://www.designerwpf.com/2008/04/18/how-do-i-make-a-listview-or-a-scrollviewer-left-handed/#comment-918</link>
		<dc:creator>Matthias Shapiro</dc:creator>
		<pubDate>Thu, 07 Aug 2008 00:05:07 +0000</pubDate>
		<guid>http://www.designerwpf.com/2008/04/18/how-do-i-make-a-listview-or-a-scrollviewer-left-handed/#comment-918</guid>
		<description>indefromoz:

1. Yes. When you go into the template for the ScrollViewer, click above the grid to add another column (so that you have three). Then highlight the column (by clicking in the middle), reset the MinWidth and give it an "Auto" width in the dropdown. I love Blend and use it all the time, but just typing the XAML is easier to me :-)

2. I can definitely reskin the scrollviewer. I'll get right on it and post something in the near future. (I'll e-mail you when it is up)</description>
		<content:encoded><![CDATA[<p>indefromoz:</p>
<p>1. Yes. When you go into the template for the ScrollViewer, click above the grid to add another column (so that you have three). Then highlight the column (by clicking in the middle), reset the MinWidth and give it an &#8220;Auto&#8221; width in the dropdown. I love Blend and use it all the time, but just typing the XAML is easier to me <img src='http://www.designerwpf.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>2. I can definitely reskin the scrollviewer. I&#8217;ll get right on it and post something in the near future. (I&#8217;ll e-mail you when it is up)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: indyfromoz</title>
		<link>http://www.designerwpf.com/2008/04/18/how-do-i-make-a-listview-or-a-scrollviewer-left-handed/#comment-917</link>
		<dc:creator>indyfromoz</dc:creator>
		<pubDate>Wed, 06 Aug 2008 23:43:58 +0000</pubDate>
		<guid>http://www.designerwpf.com/2008/04/18/how-do-i-make-a-listview-or-a-scrollviewer-left-handed/#comment-917</guid>
		<description>Hi Matthias,

Your blog post was the only resource that pointed me to a way with which I could align the scrollviewer of a listbox I have been using to the left side of the listbox. Couple of things -

1. When you swapped the width of the columns of the grid, you had to edit the XAML manually. Is there a way to do it within Blend using the "Properties" section? 

2. Do you have any plans to do a blog post on "skinning" the scrollviewer control like it appears in Blend itself (and Kaxaml)? Are there any resources I could possibly use as a tutorial?

Thanks a lot for sharing your knowledge and expertise on WPF!

Cheers,
indyfromoz.</description>
		<content:encoded><![CDATA[<p>Hi Matthias,</p>
<p>Your blog post was the only resource that pointed me to a way with which I could align the scrollviewer of a listbox I have been using to the left side of the listbox. Couple of things -</p>
<p>1. When you swapped the width of the columns of the grid, you had to edit the XAML manually. Is there a way to do it within Blend using the &#8220;Properties&#8221; section? </p>
<p>2. Do you have any plans to do a blog post on &#8220;skinning&#8221; the scrollviewer control like it appears in Blend itself (and Kaxaml)? Are there any resources I could possibly use as a tutorial?</p>
<p>Thanks a lot for sharing your knowledge and expertise on WPF!</p>
<p>Cheers,<br />
indyfromoz.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthias Shapiro</title>
		<link>http://www.designerwpf.com/2008/04/18/how-do-i-make-a-listview-or-a-scrollviewer-left-handed/#comment-800</link>
		<dc:creator>Matthias Shapiro</dc:creator>
		<pubDate>Tue, 06 May 2008 19:19:09 +0000</pubDate>
		<guid>http://www.designerwpf.com/2008/04/18/how-do-i-make-a-listview-or-a-scrollviewer-left-handed/#comment-800</guid>
		<description>Once you set your index, type the following:

MyListView.ScrollIntoView(MyListView.SelectedItem);</description>
		<content:encoded><![CDATA[<p>Once you set your index, type the following:</p>
<p>MyListView.ScrollIntoView(MyListView.SelectedItem);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Morris</title>
		<link>http://www.designerwpf.com/2008/04/18/how-do-i-make-a-listview-or-a-scrollviewer-left-handed/#comment-795</link>
		<dc:creator>Peter Morris</dc:creator>
		<pubDate>Sun, 04 May 2008 12:08:02 +0000</pubDate>
		<guid>http://www.designerwpf.com/2008/04/18/how-do-i-make-a-listview-or-a-scrollviewer-left-handed/#comment-795</guid>
		<description>I am hoping you can help me with a small problem, it is the only issue preventing me from convincing my boss to allow me to use WPF instead of WinForms.

I am using a

    
        

to show a grid of data.  When I press Cursor Down the next row is selected as expected, when I scroll down past the lowest visible item the grid scrolls.  However, when I set SelectedIndex via code I notice that the item selected is not brought into view.

ListView.SelectedIndex++;

Do you know how I can set the current row via code and have it made visible (preferably in the vertical centre of the grid, but just visible would be sufficient!).

Thankyou very much for your time!


Pete</description>
		<content:encoded><![CDATA[<p>I am hoping you can help me with a small problem, it is the only issue preventing me from convincing my boss to allow me to use WPF instead of WinForms.</p>
<p>I am using a</p>
<p>to show a grid of data.  When I press Cursor Down the next row is selected as expected, when I scroll down past the lowest visible item the grid scrolls.  However, when I set SelectedIndex via code I notice that the item selected is not brought into view.</p>
<p>ListView.SelectedIndex++;</p>
<p>Do you know how I can set the current row via code and have it made visible (preferably in the vertical centre of the grid, but just visible would be sufficient!).</p>
<p>Thankyou very much for your time!</p>
<p>Pete</p>
]]></content:encoded>
	</item>
</channel>
</rss>
