<?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>//InterKnowlogy/ Blogs &#187; Bret Faller</title>
	<atom:link href="http://blogs.interknowlogy.com/author/bretfaller/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.interknowlogy.com</link>
	<description>Blogging the Art of Software</description>
	<lastBuildDate>Fri, 17 May 2013 18:10:54 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
		<item>
		<title>Monotouch and iOS Storyboard limitations</title>
		<link>http://blogs.interknowlogy.com/2012/04/18/monotouch-and-ios-storyboard-limitations/</link>
		<comments>http://blogs.interknowlogy.com/2012/04/18/monotouch-and-ios-storyboard-limitations/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 21:34:25 +0000</pubDate>
		<dc:creator>Bret Faller</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.interknowlogy.com/?p=3119</guid>
		<description><![CDATA[Recently I&#8217;ve been doing MonoTouch research for iOS development.  While doing so I ran into a limitation when using MonoTouch and the new iOS Storyboards.  What I&#8217;ve found is that in general, MonoTouch and Storyboards play along really well together.  However, I found they only play nicely if you don&#8217;t need to create any custom [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve been doing MonoTouch research for iOS development.  While doing so I ran into a limitation when using MonoTouch and the new iOS Storyboards.  What I&#8217;ve found is that in general, MonoTouch and Storyboards play along really well together.  However, I found they only play nicely if you don&#8217;t need to create any custom controls that manage ViewControllers and navigation.  If you are just creating a simple application that has very straightforward navigation and uses only the standard iOS controls or subclassed controls, Storyboards are the way to go.  If you decide that you want custom controls that manage ViewControllers and want finer control over navigation, Storyboards are not for you.  What brought this about was I decided I wanted a neat UITabBar that would have an action button in the middle (similar to Instagram and other photo sharing applications).  I quickly realized this isn&#8217;t possible by subclassing the UITabBar without a lot of hackish techniques.  I decided I was going to create my own UITabBar.  In order to do this I needed to create a custom view to act as the tab bar and to manage the active ViewController.  This meant instantiating and managing the ViewControllers in code.  Now here is where Storyboards fail.  The problem I ran into was that the code generated by MonoTouch for my ViewControllers did not contain the proper constructors/bindings needed to instantiate them from code nor could I wire them up myself.  MonoTouch had generated some code to bind the ViewControllers&#8217; classes to the Storyboard but it doesn&#8217;t allow access to it.  Now, sure, I know I could create a method to open the xib and search for the resource to bind to but that seems nasty to me and kludgy.  I wanted nice clean binding between my code behind and my xibs.  I found that the way to have clean bindings and be able to dynamically instantiate and manage ViewControllers from code was to keep them separate in their independent xibs.  Going this route allowed me  to use those ViewControllers in both ways, via code and via Interface Builder.  In short, if you plan on using MonoTouch to create an app that needs to be able to instantiate and show ViewControllers via code, do not use Storyboards.  Otherwise, go for it because Storyboards really simplify navigation and also give you an overview of your application flow.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.interknowlogy.com/2012/04/18/monotouch-and-ios-storyboard-limitations/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hard Drive and Memory Information</title>
		<link>http://blogs.interknowlogy.com/2011/12/08/hard-drive-and-memory-information/</link>
		<comments>http://blogs.interknowlogy.com/2011/12/08/hard-drive-and-memory-information/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 23:33:21 +0000</pubDate>
		<dc:creator>Bret Faller</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Drive Information]]></category>
		<category><![CDATA[Memory Info]]></category>
		<category><![CDATA[Physical Memory]]></category>

		<guid isPermaLink="false">http://blogs.interknowlogy.com/?p=2530</guid>
		<description><![CDATA[Here are some tips on obtaining information about your computer’s physical memory as well as hard drive information. Drive Information To obtain information about the various drives in your computer you can use the DriveInfo class.  This class contains all sorts of information regarding the drive it references.  For this example I will just show [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some tips on obtaining information about your computer’s physical memory as well as hard drive information.</p>
<h4>Drive Information</h4>
<p>To obtain information about the various drives in your computer you can use the DriveInfo class.  This class contains all sorts of information regarding the drive it references.  For this example I will just show you how to obtain the total and free space in Gigabytes for the drive.  In this example I will be retrieving info about the C: drive.  Also, don’t forget that the sizes returned are in bytes and you should convert them to more meaningful types. Quick info about byte conversion:</p>
<p>Divide by:<br />
2^10 for KB<br />
2^20 for MB<br />
2^30 for GB<br />
2^40 for TB</p>
<pre class="brush: csharp; title: ; notranslate">
DriveInfo info = new DriveInfo(“C:\\”);

int freeSpace = (int)(info.AvailableFreeSpace / Math.Pow(2, 30));
int totalSpace = (int)(info.TotalSize / Math.Pow(2, 30));
</pre>
<h4>Physical Memory</h4>
<p>To obtain information about your computer’s physical memory you have two options.  You can use P/Invoke, which offers much better performance, or WMI for .NET.  I will show you using P/Invoke because it’s faster and because I grew up with Win32 and C++ and have sentimental attachment to it.  There is a little bit of funkiness to obtaining information about your physical memory in that there are multiple ways to obtain the available memory but only two ways to obtain the total memory (which are p/invoke and WMI).  If all you need to know is the amount of available physical memory you can use the PerformanceCounter class which doesn’t require p/invoke but does come with a serious performance hit.  Example:</p>
<pre class="brush: csharp; title: ; notranslate">
var memCounter = new PerformanceCounter(&quot;Memory&quot;, &quot;Available MBytes&quot;);
var available = Math.Round(memCounter.NextValue() / Math.Pow(2, 10), 2); // Because our performance counter returns the available memory in MB we only need to divide by one magnitude to get to GB
</pre>
<p>If you want to know both available and physical then you would use p/invoke and Win32 as so:</p>
<pre class="brush: csharp; title: ; notranslate">
// Win32 P/Invoke imports

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
private class MEMORYSTATUSEX
{
public uint dwLength;
public uint dwMemoryLoad;
public ulong ulTotalPhys;
public ulong ulAvailPhys;
public ulong ulTotalPageFile;
public ulong ulAvailPageFile;
public ulong ulTotalVirtual;
public ulong ulAvailVirtual;
public ulong ulAvailExtendedVirtual;
public MEMORYSTATUSEX()
{
this.dwLength = (uint)Marshal.SizeOf(typeof(MEMORYSTATUSEX));
}
}

[return: MarshalAs(UnmanagedType.Bool)]
[DllImport(&quot;kernel32.dll&quot;, CharSet = CharSet.Auto, SetLastError = true)]
static extern bool GlobalMemoryStatusEx([In, Out] MEMORYSTATUSEX lpBuffer);

public static double GetAvailablePhysicalMemory()
{
ulong availableMemory = 0;

MEMORYSTATUSEX memStatus = new MEMORYSTATUSEX();
if (GlobalMemoryStatusEx(memStatus))
{
availableMemory = memStatus.ulAvailPhys;
}

return availableMemory;
}

public static double GetTotalPhysicalMemory()
{
ulong installedMemory = 0;

MEMORYSTATUSEX memStatus = new MEMORYSTATUSEX();
if (GlobalMemoryStatusEx(memStatus))
{
installedMemory = memStatus.ulTotalPhys;
}

return installedMemory;
}
</pre>
<p>Then use those methods as so:</p>
<pre class="brush: csharp; title: ; notranslate">
var Available = Math.Round(Win32Helper.GetAvailablePhysicalMemory() / Math.Pow(2, 30), 2); // I like my available to be semi-accurate so I only round to two decimals
var Total = Math.Round(Win32Helper.GetTotalPhysicalMemory() / Math.Pow(2, 30), 0, MidpointRounding.AwayFromZero); // I like my total to be a nice round number so I round up and chop the decimals
</pre>
<p>That’s it.  Pretty simple.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.interknowlogy.com/2011/12/08/hard-drive-and-memory-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FlowDocuments, Images, and Text Wrapping</title>
		<link>http://blogs.interknowlogy.com/2011/12/01/flowdocuments-images-and-text-wrapping/</link>
		<comments>http://blogs.interknowlogy.com/2011/12/01/flowdocuments-images-and-text-wrapping/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 18:47:06 +0000</pubDate>
		<dc:creator>Bret Faller</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[FlowDocument]]></category>
		<category><![CDATA[FlowDocumentScrollViewer]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[TextWrapping]]></category>

		<guid isPermaLink="false">http://blogs.interknowlogy.com.s138346.gridserver.com/2011/12/01/flowdocuments-images-and-text-wrapping/</guid>
		<description><![CDATA[While working on a project, I had a requirement to display an image accompanied by text that wrapped around said image.&#160; I knew right away that TextBlocks were not going to help me there.&#160; I quickly set out to find something capable of flowing text; enter the FlowDocument.&#160; Most of the samples I found discussed [...]]]></description>
			<content:encoded><![CDATA[<p>While working on a project, I had a requirement to display an image accompanied by text that wrapped around said image.&#160; I knew right away that TextBlocks were not going to help me there.&#160; I quickly set out to find something capable of flowing text; enter the FlowDocument.&#160; Most of the samples I found discussed how to create large formatted documents and how to display them.&#160; I was struggling to find a nice concise article on how to create a simple reusable UI snippet that incorporated wrapping text and didn’t require an actual file.&#160; No longer will you have to suffer the same fate as I; for I am here to show you the light!&#160; Feast your eyes upon the result:</p>
<p><a href="http://blogs.interknowlogy.com.s138346.gridserver.com/wp-content/uploads/2011/12/image.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="image" border="0" alt="image" src="http://blogs.interknowlogy.com.s138346.gridserver.com/wp-content/uploads/2011/12/image_thumb.png" width="244" height="100" /></a></p>
<p>First off, let’s start with the container to hold our nifty FlowDocument.&#160; There are numerous options for displaying FlowDocuments: FlowDocumentReader, FlowDocumentScrollViewer, and FlowDocumentPageViewer.&#160; We will be using FlowDocumentScrollViewer since it allows hiding of the default toolbar and is the easiest to configure to quickly display our fake document in a format that is desired.&#160; Here is the definition for the FlowDocumentScrollViewer:</p>
<blockquote><p><font size="1"><font color="#0000ff">&lt;</font><font color="#c0504d">FlowDocumentScrollViewer</font> <font color="#ff0000">Focusable</font><font color="#0000ff">=</font><font color="#0000ff">&quot;False&quot;</font> <font color="#ff0000">IsToolBarVisible</font><font color="#0000ff">=</font><font color="#0000ff">&quot;False&quot;</font>         <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="#ff0000">ScrollViewer.CanContentScroll</font><font color="#0000ff">=&quot;False&quot;</font>         <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="#ff0000">ScrollViewer.HorizontalScrollBarVisibility</font></font><font size="1"><font color="#0000ff">=&quot;Disabled&quot;          <br /></font>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="#ff0000">ScrollViewer.VerticalScrollBarVisibility</font></font><font size="1"><font color="#0000ff">=&quot;Disabled&quot;          <br /></font>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="#ff0000">HorizontalAlignment</font><font color="#0000ff">=&quot;Stretch&quot;</font> <font color="#ff0000">VerticalAlignment</font><font color="#0000ff">=&quot;Center&quot;</font> <font color="#0000ff">/&gt;</font></font></p>
</blockquote>
<p>This will set our FlowDocumentScrollViewer up so that it is purely for displaying our fake document and won’t get in the way of our UI.&#160; No scrolling, no interaction.&#160; Next we need to design our document layout:&#160; </p>
<blockquote><pre><p><font face="Verdana"><font size="1"><font color="#0000ff">&lt;</font><font color="#c0504d">FlowDocument</font><font color="#0000ff">&gt;</font>     <br />&#160;&#160;&#160; <font color="#0000ff">&lt;</font><font color="#c0504d">Paragraph</font> <font color="#ff0000">FontWeight</font><font color="#0000ff">=&quot;Normal&quot;</font> <font color="#ff0000">Foreground</font><font color="#0000ff">=&quot;WhiteSmoke&quot;</font> <font color="#ff0000">TextAlignment</font><font color="#0000ff">=&quot;Left&quot;</font><font color="#0000ff">&gt;</font> 
<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="#0000ff">&lt;</font><font color="#c0504d">Floater</font> <font color="#ff0000">Width</font><font color="#0000ff">=&quot;48&quot;</font> <font color="#ff0000">HorizontalAlignment</font><font color="#0000ff">=&quot;Left&quot;</font> <font color="#ff0000">Margin</font><font color="#0000ff">=&quot;0,0,4,0&quot;</font> <font color="#ff0000">Padding</font><font color="#0000ff">=&quot;0&quot;&gt;</font></font></font></p><p><font size="1" face="Verdana">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="#0000ff">&lt;</font><font color="#c0504d">BlockUIContainer</font><font color="#0000ff">&gt;</font></font></p><p><font size="1" face="Verdana">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="#0000ff">&lt;</font><font color="#c0504d">Image</font> <font color="#ff0000">Source</font><font color="#0000ff">=&quot;file://c:/temp/bacon.png&quot;</font> <font color="#ff0000">Width</font><font color="#0000ff">=&quot;48&quot;</font> <font color="#ff0000">Height</font><font color="#0000ff">=&quot;34&quot; /&gt;</font></font></p><p><font size="1" face="Verdana">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="#0000ff">&lt;/</font><font color="#c0504d">BlockUIContainer</font><font color="#0000ff">&gt;</font>&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160; <font color="#0000ff">&lt;/</font><font color="#c0504d">Floater</font><font color="#0000ff">&gt;&lt;</font><font color="#c0504d">Run</font> <font color="#ff0000">Text</font><font color="#0000ff">=&quot;The Baconator&quot;</font> <font color="#ff0000">FontSize</font><font color="#0000ff">=&quot;16&quot;</font> <font color="#ff0000">Foreground</font><font color="#0000ff">=&quot;WhiteSmoke&quot; </font><font color="#ff0000">TextDecorations</font><font color="#0000ff">=&quot;Underline&quot; /&gt;</font><font color="#0000ff">&lt;<font color="#c0504d">LineBreak</font> /&gt;&lt;</font><font color="#c0504d">Run</font> <font color="#ff0000">Text</font><font color="#0000ff">=&quot;Bacon ipsum dolor sit amet adipisicing t-bone sirloin filet mignon ribeye. Tenderloin ex strip steak, pork chop hamburger est.&quot;</font> <font color="#0000ff"><font color="#ff0000">FontSize</font>=&quot;12&quot; <font color="#ff0000">Foreground</font>=&quot;WhiteSmoke&quot; /&gt;</font>    <br />&#160;&#160;&#160; <font color="#0000ff">&lt;/</font><font color="#c0504d">Paragraph</font><font color="#0000ff">&gt;</font>     <br /><font color="#0000ff">&lt;/</font><font color="#c0504d">FlowDocument</font><font color="#0000ff">&gt;</font></font></p></pre>
</blockquote>
<p>There are some caveats to using FlowDocuments.&#160; The one that you need to look out for most is that FlowDocuments are very literal, meaning it will display any white space you include in your xaml.&#160; This is why the Run elements and LineBreaks are all on the same line because any spaces and/or line returns you place in there will be displayed in the output.&#160; Also, by default FlowDocuments use Justify as their text alignment so if you don’t want your output getting spaced out then make sure you set your TextAlignment to Left on the Paragraph.</p>
<p>Obviously for discussion and sample purposes I used literal text in the flow document but you can easily replace the literal text with Bindings in the Runs (assuming using .NET 4.0) and the Image.&#160; I hope you found this useful.&#160; Here is the full xaml for the visual shown above.&#160; Obviously you will need to tweak this to suit your needs but this should give you a great start.</p>
<blockquote>
<pre>  <p><font size="1" face="Verdana"><font color="#0000ff">&lt;<font color="#c0504d">Border</font> <font color="#ff0000">Background</font>=&quot;#2B3346&quot; <font color="#ff0000">BorderBrush</font>=&quot;#212937&quot; <font color="#ff0000">BorderThickness</font>=&quot;1&quot; <font color="#ff0000">Width</font>=&quot;250&quot; <font color="#ff0000">Height</font>=&quot;100&quot;&gt;</font>
</font></p><p><font face="Verdana"><font size="1"><font color="#0000ff"><font color="#444444">   </font>&lt;</font><font color="#c0504d">FlowDocumentScrollViewer</font> <font color="#ff0000">Focusable</font><font color="#0000ff">=</font><font color="#0000ff">&quot;False&quot;</font> <font color="#ff0000">IsToolBarVisible</font><font color="#0000ff">=</font><font color="#0000ff">&quot;False&quot;</font> <font color="#ff0000">ScrollViewer.CanContentScroll</font><font color="#0000ff">=&quot;False&quot;</font> </font></font></p><p><font face="Verdana"><font size="1"><font color="#ff0000"><font color="#444444">           </font>ScrollViewer.HorizontalScrollBarVisibility</font></font></font><font face="Verdana"><font size="1"><font color="#0000ff">=&quot;Disabled&quot; </font><font color="#ff0000">ScrollViewer.VerticalScrollBarVisibility</font></font></font><font face="Verdana"><font size="1"><font color="#0000ff">=&quot;Disabled&quot; </font></font></font></p><p><font face="Verdana"><font size="1"><font color="#ff0000"><font color="#0000ff">           </font>HorizontalAlignment</font><font color="#0000ff">=&quot;Stretch&quot;</font> <font color="#ff0000">VerticalAlignment</font><font color="#0000ff">=&quot;Center&quot; <font color="#ff0000">Margin</font>=”0,-5,0,0”</font><font color="#0000ff">&gt;</font></font></font></p><p><font face="Verdana"><font size="1"><font color="#0000ff">      </font><font color="#0000ff">&lt;</font></font></font><font size="1" face="Verdana"><font color="#c0504d">FlowDocumentScrollViewer.Document</font><font color="#0000ff">&gt;</font><br /></font></p><p><font face="Verdana"><font size="1"><font color="#0000ff">         &lt;</font><font color="#c0504d">FlowDocument</font><font color="#0000ff">&gt;</font> <br /><font color="#0000ff">            &lt;</font><font color="#c0504d">Paragraph</font> <font color="#ff0000">FontWeight</font><font color="#0000ff">=&quot;Normal&quot;</font> <font color="#ff0000">Foreground</font><font color="#0000ff">=&quot;WhiteSmoke&quot;</font> <font color="#ff0000">TextAlignment</font><font color="#0000ff">=&quot;Left&quot;</font><font color="#0000ff">&gt;</font> <br /><font color="#0000ff">               &lt;</font><font color="#c0504d">Floater</font> <font color="#ff0000">Width</font><font color="#0000ff">=&quot;48&quot;</font> <font color="#ff0000">HorizontalAlignment</font><font color="#0000ff">=&quot;Left&quot;</font> <font color="#ff0000">Margin</font><font color="#0000ff">=&quot;0,0,4,0&quot;</font> <font color="#ff0000">Padding</font><font color="#0000ff">=&quot;0&quot;&gt;</font></font></font></p><p><font size="1" face="Verdana"><font color="#0000ff">                  &lt;</font><font color="#c0504d">BlockUIContainer</font><font color="#0000ff">&gt;</font></font></p><p><font size="1" face="Verdana"><font color="#0000ff">                     &lt;</font><font color="#c0504d">Image</font> <font color="#ff0000">Source</font><font color="#0000ff">=&quot;file://c:/temp/bacon.png&quot;</font> <font color="#ff0000">Width</font><font color="#0000ff">=&quot;48&quot;</font> <font color="#ff0000">Height</font><font color="#0000ff">=&quot;34&quot; /&gt;</font></font></p><p><font size="1" face="Verdana"><font color="#0000ff">                 &lt;/</font><font color="#c0504d">BlockUIContainer</font><font color="#0000ff">&gt;</font> <br /><font color="#0000ff">              &lt;/</font><font color="#c0504d">Floater</font><font color="#0000ff">&gt;&lt;</font><font color="#c0504d">Run</font> <font color="#ff0000">Text</font><font color="#0000ff">=&quot;The Baconator&quot;</font> <font color="#ff0000">FontSize</font><font color="#0000ff">=&quot;16&quot;</font> <font color="#ff0000">Foreground</font><font color="#0000ff">=&quot;WhiteSmoke&quot; </font><font color="#ff0000">TextDecorations</font><font color="#0000ff">=&quot;Underline&quot; /&gt;</font><font color="#0000ff">&lt;<font color="#c0504d">LineBreak</font> /&gt;&lt;</font><font color="#c0504d">Run</font> <font color="#ff0000">Text</font><font color="#0000ff">=&quot;Bacon ipsum dolor sit amet adipisicing t-bone sirloin filet mignon ribeye. Tenderloin ex strip steak, pork chop hamburger est.&quot;</font> <font color="#0000ff"><font color="#ff0000">FontSize</font>=&quot;12&quot; <font color="#ff0000">Foreground</font>=&quot;WhiteSmoke&quot; /&gt;</font> <br /><font color="#0000ff">           &lt;/</font><font color="#c0504d">Paragraph</font><font color="#0000ff">&gt;</font> <br /><font color="#0000ff">         &lt;/</font><font color="#c0504d">FlowDocument</font><font color="#0000ff">&gt;</font></font></p><p><font size="1"><font color="#0000ff"><font face="Verdana">      </font><font face="Verdana">&lt;/<font color="#c0504d">FlowDocumentScrollViewer.Document</font>&gt;</font></font></font></p><p><font color="#0000ff" size="1" face="Verdana">   </font><font size="1" face="Verdana"><font color="#0000ff">&lt;/<font color="#c0504d">FlowDocumentScrollViewer</font>&gt;
&lt;/<font color="#c0504d">Border</font>&gt;</font></font></p></pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blogs.interknowlogy.com/2011/12/01/flowdocuments-images-and-text-wrapping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
