<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Biggle&#039;s Blog &#187; XAML</title>
	<atom:link href="http://www.biggle.de/blog/tag/xaml/feed" rel="self" type="application/rss+xml" />
	<link>http://www.biggle.de/blog</link>
	<description>Web- und Software Development</description>
	<lastBuildDate>Tue, 07 Feb 2012 13:08:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>MultiBinding die Zweite</title>
		<link>http://www.biggle.de/blog/multibinding-die-zweite</link>
		<comments>http://www.biggle.de/blog/multibinding-die-zweite#comments</comments>
		<pubDate>Sun, 06 Mar 2011 15:07:59 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=6276</guid>
		<description><![CDATA[Ich hatte schon vor einiger Zeit gezeigt (puh, schon wieder 1 1/2 Jahre her..) , wie man im XAML ein MultiBinding implementiert. Nun stand ich vor einem Problem, das ich im XAML ein paar Elemente definiere und im Code weitere Elemente zur Laufzeit hinzufüge. Diese Elemente wollte ich nun vernünftig zusammenbringen. Im Code benötige ich [...]]]></description>
			<content:encoded><![CDATA[<p>Ich hatte schon vor einiger Zeit <a href="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5iaWdnbGUuZGUvYmxvZy9zdHJpbmdmb3JtYXQtaW0teGFtbC1xdWlja3k="> gezeigt</a> (<em>puh, schon wieder 1 1/2 Jahre her..</em>) , wie man im XAML ein MultiBinding implementiert. Nun stand ich vor einem Problem, das ich im XAML ein paar Elemente definiere und im Code weitere Elemente zur Laufzeit hinzufüge. Diese Elemente wollte ich nun vernünftig zusammenbringen.</p>
<p>Im Code benötige ich eine Slider-Property und eine Property Namens &#8220;Caption&#8221;, welche einen Text halten soll. Im Xaml habe ich ein TextBlock-Element, welcher den Inhalt der Caption-Property und den aktuellen Wert des Sliders anzeigen soll.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> string Caption <span style="color: #009900;">&#123;</span> get<span style="color: #339933;">;</span> set<span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">public</span> Slider Slider <span style="color: #009900;">&#123;</span> get<span style="color: #339933;">;</span> set<span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>TextBlock Grid<span style="color: #339933;">.</span>ColumnSpan<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;3&quot;</span> Name<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;CaptionTxtBlock&quot;</span> <span style="color: #339933;">/&gt;</span></pre></td></tr></table></div>

<p>Der Slider, welcher von aussen gesetzt wird, bekommt im &#8220;Loading&#8221; noch ein paar Eigenschaften und die Position im UserControl mit:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">Slider<span style="color: #339933;">.</span>Name <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;slider&quot;</span><span style="color: #339933;">;</span>
Slider<span style="color: #339933;">.</span>SetValue<span style="color: #009900;">&#40;</span>Grid<span style="color: #339933;">.</span>RowProperty<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
Slider<span style="color: #339933;">.</span>SetValue<span style="color: #009900;">&#40;</span>Grid<span style="color: #339933;">.</span>ColumnProperty<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
SliderGrid<span style="color: #339933;">.</span>Children<span style="color: #339933;">.</span>Add<span style="color: #009900;">&#40;</span>Slider<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Anschliessend baue ich mir ein MultiBinding-Objekt, dass nun die beiden benötigen Properties an meiner TextProperty des TextBlockes bindet und entsprechend formatiert ausgibt:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">MultiBinding mb <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> MultiBinding<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    Mode <span style="color: #339933;">=</span> BindingMode<span style="color: #339933;">.</span>TwoWay<span style="color: #339933;">,</span>
    UpdateSourceTrigger <span style="color: #339933;">=</span> UpdateSourceTrigger<span style="color: #339933;">.</span>PropertyChanged<span style="color: #339933;">,</span>
    StringFormat <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;{0} ({1:00} %)&quot;</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
Binding sliderBinding <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Binding<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    Source <span style="color: #339933;">=</span> Slider<span style="color: #339933;">,</span>
    Path <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> PropertyPath<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Value&quot;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
Binding captionBinding <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Binding<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    Source <span style="color: #339933;">=</span> this<span style="color: #339933;">,</span>
    Path <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> PropertyPath<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Caption&quot;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
mb<span style="color: #339933;">.</span>Bindings<span style="color: #339933;">.</span>Add<span style="color: #009900;">&#40;</span>captionBinding<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
mb<span style="color: #339933;">.</span>Bindings<span style="color: #339933;">.</span>Add<span style="color: #009900;">&#40;</span>sliderBinding<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
BindingOperations<span style="color: #339933;">.</span>SetBinding<span style="color: #009900;">&#40;</span>CaptionTxtBlock<span style="color: #339933;">,</span> TextBlock<span style="color: #339933;">.</span>TextProperty<span style="color: #339933;">,</span> mb<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Und so sieht das ganze dann aus:</p>
<p><a href="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5iaWdnbGUuZGUvYmxvZy93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMy8yMDExLTAzLTA2LTE2aDAxXzE4LnBuZw=="><img src="http://www.biggle.de/blog/wp-content/uploads/2011/03/2011-03-06-16h01_18.png" alt="" title="2011-03-06 16h01_18" width="500" class="alignnone size-full wp-image-6285" /></a></p>
<p><a href="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5iaWdnbGUuZGUvRXhhbXBsZXMvU2xpZGVyQ29udHJvbC5yYXI=">Download Code</a></p>
<p>Viel Spaß beim entwickeln : )</p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5iaWdnbGUuZGU=">Mario Priebe</a>.</p> <img src="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=6276" width="1" height="1" style="display: none;" /><h2  class="related_post_title">Ähnliche Beiträge</h2><ul class="related_post"><li>14. Februar 2011 -- <a href="http://www.biggle.de/blog/doppelklick-im-datagrid-abfangen-wpf-quicky" title="Doppelklick im DataGrid abfangen &#8211; WPF Quicky">Doppelklick im DataGrid abfangen &#8211; WPF Quicky</a></li><li>7. August 2010 -- <a href="http://www.biggle.de/blog/wpf-tabbing-gui" title="WPF Tabbing GUI">WPF Tabbing GUI</a></li><li>5. Mai 2010 -- <a href="http://www.biggle.de/blog/combobox-an-objectprovider-binden" title="ComboBox an ObjectDataProvider binden">ComboBox an ObjectDataProvider binden</a></li><li>25. März 2010 -- <a href="http://www.biggle.de/blog/tabcontrol-hoehe-100percent" title="TabControl-Höhe 100%">TabControl-Höhe 100%</a></li><li>5. März 2010 -- <a href="http://www.biggle.de/blog/navigation-paging-in-wpf" title="Navigation / Paging in WPF">Navigation / Paging in WPF</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/multibinding-die-zweite/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ToolTip an einem &#8220;disabled Button&#8221; &#8211; XAML Quicky</title>
		<link>http://www.biggle.de/blog/tooltip-an-einem-disabled-button-xaml</link>
		<comments>http://www.biggle.de/blog/tooltip-an-einem-disabled-button-xaml#comments</comments>
		<pubDate>Mon, 14 Feb 2011 19:05:57 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[CodeSnippet]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=6257</guid>
		<description><![CDATA[Stellt man einen Button auf &#8220;disabled&#8221;, wird leider kein Tooltip mehr angezeigt. Möchte man dem entgegenwirken, verwendet man die Methode ShowOnDisabled am ToolTipService: 1 &#60;Button Content=&#34;Hier klicken&#34; ToolTipService.ShowOnDisabled=&#34;True&#34; IsEnabled=&#34;False&#34; ToolTip=&#34;Hier klicken&#34;/&#62; Viel Spaß beim entwickeln : ) Dieser Beitrag stammt von Mario Priebe. Ähnliche Beiträge14. Februar 2011 -- TextTrimming &#8211; XAML Quicky14. Februar 2011 -- [...]]]></description>
			<content:encoded><![CDATA[<p>Stellt man einen Button auf &#8220;disabled&#8221;, wird leider kein Tooltip mehr angezeigt. Möchte man dem entgegenwirken, verwendet man die Methode ShowOnDisabled am ToolTipService:</p>
<p><a href="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5iaWdnbGUuZGUvYmxvZy93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMi8yMDExLTAyLTE0LTIwaDAyXzAyLnBuZw=="><img src="http://www.biggle.de/blog/wp-content/uploads/2011/02/2011-02-14-20h02_02.png" alt="" title="Tooltip Disabled Button" width="500" class="alignnone size-full wp-image-6262" /></a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>Button Content<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Hier klicken&quot;</span> ToolTipService<span style="color: #339933;">.</span>ShowOnDisabled<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;True&quot;</span> IsEnabled<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;False&quot;</span> ToolTip<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Hier klicken&quot;</span><span style="color: #339933;">/&gt;</span></pre></td></tr></table></div>

<p>Viel Spaß beim entwickeln : )</p>
<p><br class="spacer_" /></p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5iaWdnbGUuZGU=">Mario Priebe</a>.</p> <img src="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=6257" width="1" height="1" style="display: none;" /><h2  class="related_post_title">Ähnliche Beiträge</h2><ul class="related_post"><li>14. Februar 2011 -- <a href="http://www.biggle.de/blog/texttrimming-xaml-quicky" title="TextTrimming &#8211;  XAML Quicky">TextTrimming &#8211;  XAML Quicky</a></li><li>14. Februar 2011 -- <a href="http://www.biggle.de/blog/doppelklick-im-datagrid-abfangen-wpf-quicky" title="Doppelklick im DataGrid abfangen &#8211; WPF Quicky">Doppelklick im DataGrid abfangen &#8211; WPF Quicky</a></li><li>28. Dezember 2011 -- <a href="http://www.biggle.de/blog/websequencediagrams-api-mit-net" title="WebSequenceDiagrams API mit .NET">WebSequenceDiagrams API mit .NET</a></li><li>5. Mai 2011 -- <a href="http://www.biggle.de/blog/prufen-ob-ein-string-eine-guid-ist" title="Prüfen ob ein String eine Guid ist">Prüfen ob ein String eine Guid ist</a></li><li>6. März 2011 -- <a href="http://www.biggle.de/blog/multibinding-die-zweite" title="MultiBinding die Zweite">MultiBinding die Zweite</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/tooltip-an-einem-disabled-button-xaml/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TextTrimming &#8211;  XAML Quicky</title>
		<link>http://www.biggle.de/blog/texttrimming-xaml-quicky</link>
		<comments>http://www.biggle.de/blog/texttrimming-xaml-quicky#comments</comments>
		<pubDate>Mon, 14 Feb 2011 18:58:34 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[CodeSnippet]]></category>
		<category><![CDATA[Quicky]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=6250</guid>
		<description><![CDATA[Im XAML hat man die Möchglichkeit den Text zu kürzen, wenn dieser länger ist, als die Oberfläche es zulässt. Man kann bestimmen, ob man nach einem Wort (WordEllipsis) und nach einem Buchstaben (CharacterEllipsis) den Text abtrennt. 3 Punkte (&#8230;) zeigen dem Benutzer an, das hier weiterer Text hinterlegt ist. 1 2 &#60;TextBlock Name=&#34;sampleTextBlock&#34; TextTrimming=&#34;WordEllipsis&#34; TextWrapping=&#34;NoWrap&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>Im XAML hat man die Möchglichkeit den Text zu kürzen, wenn dieser länger ist, als die Oberfläche es zulässt. </p>
<p><a href="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5iaWdnbGUuZGUvYmxvZy93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wMi8yMDExLTAyLTE0LTE5aDU2XzUzLnBuZw=="><img src="http://www.biggle.de/blog/wp-content/uploads/2011/02/2011-02-14-19h56_53.png" alt="" title="TextTrimming XAML WPF" width="350" height="92" class="alignnone size-full wp-image-6253" /></a></p>
<p>Man kann bestimmen, ob man nach einem Wort (WordEllipsis) und nach einem Buchstaben (CharacterEllipsis) den Text abtrennt. 3 Punkte (&#8230;) zeigen dem Benutzer an, das hier weiterer Text hinterlegt ist.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>TextBlock  Name<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;sampleTextBlock&quot;</span> TextTrimming<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;WordEllipsis&quot;</span>  TextWrapping<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;NoWrap&quot;</span> 
                    Text<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.&quot;</span><span style="color: #339933;">/&gt;</span></pre></td></tr></table></div>

<p>Viel Spaß beim entwickeln : )</p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5iaWdnbGUuZGU=">Mario Priebe</a>.</p> <img src="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=6250" width="1" height="1" style="display: none;" /><h2  class="related_post_title">Ähnliche Beiträge</h2><ul class="related_post"><li>14. Februar 2011 -- <a href="http://www.biggle.de/blog/doppelklick-im-datagrid-abfangen-wpf-quicky" title="Doppelklick im DataGrid abfangen &#8211; WPF Quicky">Doppelklick im DataGrid abfangen &#8211; WPF Quicky</a></li><li>14. Februar 2011 -- <a href="http://www.biggle.de/blog/tooltip-an-einem-disabled-button-xaml" title="ToolTip an einem &#8220;disabled Button&#8221; &#8211; XAML Quicky">ToolTip an einem &#8220;disabled Button&#8221; &#8211; XAML Quicky</a></li><li>4. April 2010 -- <a href="http://www.biggle.de/blog/alle-bilder-eines-verzeichnisses-php-quicky" title="Alle Bilder eines Verzeichnisses &#8211; PHP Quicky">Alle Bilder eines Verzeichnisses &#8211; PHP Quicky</a></li><li>2. Januar 2010 -- <a href="http://www.biggle.de/blog/dynamisches-applikations-icon-xaml" title="Dynamisches Applikations Icon &#8211; XAML Quicky">Dynamisches Applikations Icon &#8211; XAML Quicky</a></li><li>25. November 2009 -- <a href="http://www.biggle.de/blog/mulitline-textbox-xaml-quicky" title="Multiline TextBox &#8211; XAML Quicky">Multiline TextBox &#8211; XAML Quicky</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/texttrimming-xaml-quicky/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Doppelklick im DataGrid abfangen &#8211; WPF Quicky</title>
		<link>http://www.biggle.de/blog/doppelklick-im-datagrid-abfangen-wpf-quicky</link>
		<comments>http://www.biggle.de/blog/doppelklick-im-datagrid-abfangen-wpf-quicky#comments</comments>
		<pubDate>Mon, 14 Feb 2011 18:48:34 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[CodeSnippet]]></category>
		<category><![CDATA[Quicky]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=6246</guid>
		<description><![CDATA[Möchte man auf den Klick eines Datensatzes  in einem WPF DataGrid reagieren, so kann man folgenden Code dazu verwenden: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 private void dataGrid_MouseDoubleClick&#40;object sender, MouseButtonEventArgs e&#41; &#123; DependencyObject dep = &#40;DependencyObject&#41;e.OriginalSource; &#160; while &#40;&#40;dep != null&#41; &#38;&#38; !&#40;dep [...]]]></description>
			<content:encoded><![CDATA[<p>Möchte man auf den Klick eines Datensatzes  in einem WPF DataGrid reagieren, so kann man folgenden Code dazu verwenden:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">private</span> void dataGrid_MouseDoubleClick<span style="color: #009900;">&#40;</span>object sender<span style="color: #339933;">,</span> MouseButtonEventArgs e<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    DependencyObject dep <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>DependencyObject<span style="color: #009900;">&#41;</span>e<span style="color: #339933;">.</span>OriginalSource<span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>dep <span style="color: #339933;">!=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #339933;">!</span><span style="color: #009900;">&#40;</span>dep is DataGridRow<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        dep <span style="color: #339933;">=</span> VisualTreeHelper<span style="color: #339933;">.</span>GetParent<span style="color: #009900;">&#40;</span>dep<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>dep <span style="color: #339933;">==</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span>
        <span style="color: #b1b100;">return</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>dep is DataGridRow<span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        DataGridRow dataGridRow <span style="color: #339933;">=</span> dep <span style="color: #b1b100;">as</span> DataGridRow<span style="color: #339933;">;</span>
        <span style="color: #666666; font-style: italic;">//tu was</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Den Klick auf denDataGrid-ColumnHeader oder einer DataGrid-Zelle kann mit der selben Methode behandelt werden. Hier wird einfach die Abfrage mit in das if-Statement aufgenommen und im Rumpf dementsprechend behandelt.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">private</span> void dataGrid_MouseDoubleClick<span style="color: #009900;">&#40;</span>object sender<span style="color: #339933;">,</span> MouseButtonEventArgs e<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    DependencyObject dep <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>DependencyObject<span style="color: #009900;">&#41;</span>e<span style="color: #339933;">.</span>OriginalSource<span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>dep <span style="color: #339933;">!=</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #339933;">!</span><span style="color: #009900;">&#40;</span>dep is DataGridRow<span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #339933;">!</span><span style="color: #009900;">&#40;</span>dep is DataGridColumnHeader<span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #339933;">!</span><span style="color: #009900;">&#40;</span>dep is DataGridCell<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        dep <span style="color: #339933;">=</span> VisualTreeHelper<span style="color: #339933;">.</span>GetParent<span style="color: #009900;">&#40;</span>dep<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>dep <span style="color: #339933;">==</span> <span style="color: #009900; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span>
        <span style="color: #b1b100;">return</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>dep is DataGridRow<span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        DataGridRow dataGridRow <span style="color: #339933;">=</span> dep <span style="color: #b1b100;">as</span> DataGridRow<span style="color: #339933;">;</span>
        <span style="color: #666666; font-style: italic;">//tu was</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>dep is DataGridColumnHeader<span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        DataGridColumnHeader columnHeader <span style="color: #339933;">=</span> dep <span style="color: #b1b100;">as</span> DataGridColumnHeader<span style="color: #339933;">;</span>
        <span style="color: #666666; font-style: italic;">//tu was</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>dep is DataGridCell<span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        DataGridCell cell <span style="color: #339933;">=</span> dep <span style="color: #b1b100;">as</span> DataGridCell<span style="color: #339933;">;</span>
        <span style="color: #666666; font-style: italic;">//tu was</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p><br class="spacer_" /></p>
<p>Viel Spaß beim entwickeln : )</p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5iaWdnbGUuZGU=">Mario Priebe</a>.</p> <img src="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=6246" width="1" height="1" style="display: none;" /><h2  class="related_post_title">Ähnliche Beiträge</h2><ul class="related_post"><li>14. Februar 2011 -- <a href="http://www.biggle.de/blog/texttrimming-xaml-quicky" title="TextTrimming &#8211;  XAML Quicky">TextTrimming &#8211;  XAML Quicky</a></li><li>25. November 2009 -- <a href="http://www.biggle.de/blog/mulitline-textbox-xaml-quicky" title="Multiline TextBox &#8211; XAML Quicky">Multiline TextBox &#8211; XAML Quicky</a></li><li>18. Juni 2009 -- <a href="http://www.biggle.de/blog/emailvalidationconverter-wpf-quicky" title="EMailValidationConverter &#8211; WPF Quicky">EMailValidationConverter &#8211; WPF Quicky</a></li><li>18. Juni 2009 -- <a href="http://www.biggle.de/blog/birthdayconverter-wpf-quicky" title="BirthdayConverter &#8211; WPF Quicky">BirthdayConverter &#8211; WPF Quicky</a></li><li>26. Februar 2009 -- <a href="http://www.biggle.de/blog/contextmenu-wpf-xaml-quicky" title="contextmenu &#8211; WPF / XAML Quicky">contextmenu &#8211; WPF / XAML Quicky</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/doppelklick-im-datagrid-abfangen-wpf-quicky/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Text innerhalb eines TextBlock-Controls formatieren – XAML</title>
		<link>http://www.biggle.de/blog/text-innerhalb-eines-textblock-controls-formatieren-xaml-wpf-silverlight</link>
		<comments>http://www.biggle.de/blog/text-innerhalb-eines-textblock-controls-formatieren-xaml-wpf-silverlight#comments</comments>
		<pubDate>Tue, 30 Nov 2010 18:17:27 +0000</pubDate>
		<dc:creator>Mario Priebe</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://www.biggle.de/blog/?p=6006</guid>
		<description><![CDATA[Um einen Text innerhalb einer Textbox zu formatieren, steht einem die Klasse Run zur Verfügung. Run ist ein Element für fortlaufenden Inhalt auf Inlineebene, das formatierten oder unformatierten Lauftext enthalten kann. 1 2 3 4 &#60;TextBlock FontSize=&#34;28&#34; TextWrapping=&#34;Wrap&#34;&#62; Hier steht &#60;Run Foreground=&#34;Red&#34;&#62;Text&#60;/Run&#62; der &#60;Run FontWeight=&#34;Bold&#34; FontStyle=&#34;Italic&#34; Foreground=&#34;Cyan&#34; FontSize=&#34;38&#34; TextDecorations=&#34;Underline&#34;&#62;verschiedene Formate&#60;/Run&#62; darstellt. &#60;/TextBlock&#62; Einen Zeilenumbruch innerhalb [...]]]></description>
			<content:encoded><![CDATA[<p>Um einen Text innerhalb einer Textbox zu formatieren, steht einem die Klasse <a href="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL21zZG4ubWljcm9zb2Z0LmNvbS9lbi1VUy9saWJyYXJ5L3N5c3RlbS53aW5kb3dzLmRvY3VtZW50cy5ydW4uYXNweA==">Run</a> zur Verfügung. Run ist ein Element für fortlaufenden Inhalt auf Inlineebene, das formatierten oder unformatierten Lauftext enthalten kann.</p>
<p><a href="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5iaWdnbGUuZGUvYmxvZy93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8xMS8yMDEwLTExLTMwLTE5aDA2XzIyLnBuZw=="><img src="http://www.biggle.de/blog/wp-content/uploads/2010/11/2010-11-30-19h06_22.png" alt="" title="2010-11-30 19h06_22" width="500" class="alignnone size-full wp-image-6033" /></a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>TextBlock FontSize<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;28&quot;</span> TextWrapping<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Wrap&quot;</span><span style="color: #339933;">&gt;</span>
    Hier steht <span style="color: #339933;">&lt;</span>Run Foreground<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Red&quot;</span><span style="color: #339933;">&gt;</span>Text<span style="color: #339933;">&lt;/</span>Run<span style="color: #339933;">&gt;</span> der
    <span style="color: #339933;">&lt;</span>Run FontWeight<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Bold&quot;</span> FontStyle<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Italic&quot;</span> Foreground<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Cyan&quot;</span> FontSize<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;38&quot;</span> TextDecorations<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Underline&quot;</span><span style="color: #339933;">&gt;</span>verschiedene Formate<span style="color: #339933;">&lt;/</span>Run<span style="color: #339933;">&gt;</span> darstellt<span style="color: #339933;">.</span>
<span style="color: #339933;">&lt;/</span>TextBlock<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>Einen Zeilenumbruch innerhalb eines Textblocks erreicht man mit</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>LineBreak <span style="color: #339933;">/&gt;</span></pre></div></div>

<p>Bei einem Hyperlink kann diese Methode auch angewendet werden. (In Silverlight HyperlinkButton)</p>
<p><a href="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5iaWdnbGUuZGUvYmxvZy93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8xMS8yMDEwLTExLTMwLTE5aDEyXzQ0LnBuZw=="><img src="http://www.biggle.de/blog/wp-content/uploads/2010/11/2010-11-30-19h12_44.png" alt="" title="2010-11-30 19h12_44" width="500" class="alignnone size-full wp-image-6038" /></a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>TextBlock TextWrapping<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Wrap&quot;</span><span style="color: #339933;">&gt;</span>            
    <span style="color: #339933;">&lt;</span>Hyperlink TextDecorations<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;None&quot;</span> NavigateUri<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://www.biggle.de&quot;</span><span style="color: #339933;">&gt;</span>
        <span style="color: #339933;">&lt;</span>Italic<span style="color: #339933;">&gt;</span>Hier<span style="color: #339933;">&lt;/</span>Italic<span style="color: #339933;">&gt;</span> <span style="color: #339933;">&lt;</span>Bold<span style="color: #339933;">&gt;</span>steht<span style="color: #339933;">&lt;/</span>Bold<span style="color: #339933;">&gt;</span> ein <span style="color: #339933;">&lt;</span>Underline<span style="color: #339933;">&gt;</span>Hyperlink<span style="color: #339933;">&lt;/</span>Underline<span style="color: #339933;">&gt;</span>                 
        <span style="color: #339933;">&lt;</span>LineBreak <span style="color: #339933;">/&gt;</span>      
            über mehrere <span style="color: #339933;">&lt;</span>Run Foreground<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Red&quot;</span><span style="color: #339933;">&gt;</span>Zeilen<span style="color: #339933;">&lt;/</span>Run<span style="color: #339933;">&gt;.</span>
    <span style="color: #339933;">&lt;/</span>Hyperlink<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>TextBlock<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>Im Hyperlinkbeispiel sieht man auch, wie man den Text kursiv,  fett geschrieben und unterstrichen, noch formatieren kann.</p>
<p>Selbst Bilder können so in einem TextBlock mit dargestellt werden:</p>
<p><a href="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5iaWdnbGUuZGUvYmxvZy93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8xMS8yMDEwLTExLTMwLTE5aDE0XzIzLnBuZw=="><img src="http://www.biggle.de/blog/wp-content/uploads/2010/11/2010-11-30-19h14_23.png" alt="" title="2010-11-30 19h14_23" width="500" class="alignnone size-full wp-image-6040" /></a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>TextBlock<span style="color: #339933;">&gt;</span>
    Das bin ich
    <span style="color: #339933;">&lt;</span>LineBreak <span style="color: #339933;">/&gt;</span>
    <span style="color: #339933;">&lt;</span>Image Source<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/Images/IMG_6911_small.jpg&quot;</span> Width<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;50&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;/</span>TextBlock<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>Es ist auch möglich, innerhalb des Textblock-Controls Werte aus einem Binding heraus darzustellen:</p>
<p><a href="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5iaWdnbGUuZGUvYmxvZy93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8xMS8yMDEwLTExLTMwLTE5aDA5XzM5LnBuZw=="><img src="http://www.biggle.de/blog/wp-content/uploads/2010/11/2010-11-30-19h09_39.png" alt="" title="2010-11-30 19h09_39" width="500" class="alignnone size-full wp-image-6035" /></a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>TextBlock DataContext<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;{Binding Order}&quot;</span> TextWrapping<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Wrap&quot;</span><span style="color: #339933;">&gt;</span>
    <span style="color: #339933;">&lt;</span>Run TextDecorations<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Underline&quot;</span><span style="color: #339933;">&gt;</span>Ihre Bestellung<span style="color: #339933;">&lt;/</span>Run<span style="color: #339933;">&gt;</span>
    <span style="color: #339933;">&lt;</span>LineBreak <span style="color: #339933;">/&gt;</span>
    <span style="color: #339933;">&lt;</span>Run<span style="color: #339933;">&gt;</span>Produkt<span style="color: #339933;">:&lt;/</span>Run<span style="color: #339933;">&gt;</span>
    <span style="color: #339933;">&lt;</span>TextBlock Text<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;{Binding productName}&quot;</span> <span style="color: #339933;">/&gt;</span>
    <span style="color: #339933;">&lt;</span>Run<span style="color: #339933;">&gt;</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">&lt;/</span>Run<span style="color: #339933;">&gt;</span>
        <span style="color: #339933;">&lt;</span>TextBlock Text<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;{Binding quantity}&quot;</span> <span style="color: #339933;">/&gt;</span>
    <span style="color: #339933;">&lt;</span>Run<span style="color: #339933;">&gt;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&lt;/</span>Run<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>TextBlock<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> partial <span style="color: #000000; font-weight: bold;">class</span> MainWindow <span style="color: #339933;">:</span> Window
<span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">public</span> Order Order <span style="color: #009900;">&#123;</span> get<span style="color: #339933;">;</span> set<span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">public</span> MainWindow<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        InitializeComponent<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        LoadOrders<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>  
    <span style="color: #000000; font-weight: bold;">private</span> void LoadOrders<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        Order <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Order<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        Order<span style="color: #339933;">.</span>productName <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Mountainbike&quot;</span><span style="color: #339933;">;</span>
        Order<span style="color: #339933;">.</span>quantity <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
&nbsp;
        this<span style="color: #339933;">.</span>DataContext <span style="color: #339933;">=</span> this<span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p><br class="spacer_" /></p>
<p>Viel Spaß beim entwickeln : )</p>
<hr /><p style="float:right; font-size:0.9em;">Dieser Beitrag stammt von <a href="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5iaWdnbGUuZGU=">Mario Priebe</a>.</p> <img src="http://www.biggle.de/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=6006" width="1" height="1" style="display: none;" /><h2  class="related_post_title">Ähnliche Beiträge</h2><ul class="related_post"><li>6. März 2011 -- <a href="http://www.biggle.de/blog/multibinding-die-zweite" title="MultiBinding die Zweite">MultiBinding die Zweite</a></li><li>14. Februar 2011 -- <a href="http://www.biggle.de/blog/tooltip-an-einem-disabled-button-xaml" title="ToolTip an einem &#8220;disabled Button&#8221; &#8211; XAML Quicky">ToolTip an einem &#8220;disabled Button&#8221; &#8211; XAML Quicky</a></li><li>14. Februar 2011 -- <a href="http://www.biggle.de/blog/texttrimming-xaml-quicky" title="TextTrimming &#8211;  XAML Quicky">TextTrimming &#8211;  XAML Quicky</a></li><li>14. Februar 2011 -- <a href="http://www.biggle.de/blog/doppelklick-im-datagrid-abfangen-wpf-quicky" title="Doppelklick im DataGrid abfangen &#8211; WPF Quicky">Doppelklick im DataGrid abfangen &#8211; WPF Quicky</a></li><li>7. August 2010 -- <a href="http://www.biggle.de/blog/wpf-tabbing-gui" title="WPF Tabbing GUI">WPF Tabbing GUI</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.biggle.de/blog/text-innerhalb-eines-textblock-controls-formatieren-xaml-wpf-silverlight/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

