<?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>吉田Style-MindShare- &#187; アイコンの整列</title>
	<atom:link href="http://yoshidastyle.net/Blogs/tag/%e3%82%a2%e3%82%a4%e3%82%b3%e3%83%b3%e3%81%ae%e6%95%b4%e5%88%97/feed" rel="self" type="application/rss+xml" />
	<link>http://yoshidastyle.net/Blogs</link>
	<description>プログラムや様々な事象に関する認識とその共有の為のブログ</description>
	<lastBuildDate>Thu, 17 May 2012 15:04:56 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>子ウィンドウを並べて表示する[MDI][C++Builder]</title>
		<link>http://yoshidastyle.net/Blogs/uncategorized/2009/03/02/mdi%ef%bd%94%ef%bd%8f%ef%bd%90%ef%bd%89%ef%bd%83</link>
		<comments>http://yoshidastyle.net/Blogs/uncategorized/2009/03/02/mdi%ef%bd%94%ef%bd%8f%ef%bd%90%ef%bd%89%ef%bd%83#comments</comments>
		<pubDate>Mon, 02 Mar 2009 04:53:41 +0000</pubDate>
		<dc:creator>@yoshidastyle</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[C++Builder]]></category>
		<category><![CDATA[アイコンの整列]]></category>
		<category><![CDATA[並べて表示]]></category>
		<category><![CDATA[重ねて表示]]></category>

		<guid isPermaLink="false">http://yoshidastyle.net/Blogs/?p=161</guid>
		<description><![CDATA[C++Builder 子ウィンドウを並べて表示する 重ねて表示 アイコンの整列 子ウィンドウを重ねて表示する アイコンの整列]]></description>
			<content:encoded><![CDATA[<p>関連：[MDI][<a href="http://yoshidastyle.net/Blogs/tag/cbuilder" class="st_tag internal_tag" rel="tag" title="C++Builder タグの付いた投稿">C++Builder</a>]
<ul>	
<li>子ウィンドウを並べて表示する</li>
<p>	
<li>子ウィンドウを重ねて表示する</li>
<p>	
<li><a href="http://yoshidastyle.net/Blogs/tag/%e3%82%a2%e3%82%a4%e3%82%b3%e3%83%b3%e3%81%ae%e6%95%b4%e5%88%97" class="st_tag internal_tag" rel="tag" title="アイコンの整列 タグの付いた投稿">アイコンの整列</a></li>
<p></ul>
<p>MDIアプリケーションを作成していると、子ウィンドウの整理（操作）をしなければならない場面がでてくると思う。</p>
<p><a href="http://yoshidastyle.net/Blogs/wp-content/uploads/2009/03/mdi_03.gif"><img class="alignnone size-thumbnail wp-image-165" title="MDI並べて表示" src="http://yoshidastyle.net/Blogs/wp-content/uploads/2009/03/mdi_03-150x150.gif" alt="MDI並べて表示" width="150" height="150" /></a></p>
<p><span id="more-161"></span>C++Builderで開発をしている場合は簡単にこの機能が実装できる。以下にサンプルコードを記載する。なお関連性が高いコードに関してもメモしておこう。</p>
<p>//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>void __fastcall TFormMain::Tile1Click(TObject *Sender)<br />{<br /><span style="color: #339966;">//MDI子ウィンドウを並べて表示する</span><br />　　　　Tile() ;</p>
<p>}<br />//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>void __fastcall TFormMain::Cascade1Click(TObject *Sender)<br />{<br /><span style="color: #339966;">//MDI子ウィンドウを重ねて表示する</span><br />　　　　Cascade();<br />}<br />//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>void __fastcall TFormMain::ArrangeAll1Click(TObject *Sender)<br />{<br /><span style="color: #339966;">//アイコンの整列を行う</span></p>
<p><span style="color: #339966;">　　　　</span>ArrangeIcons();<br />}<br />//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>

	Tags: <a href="http://yoshidastyle.net/Blogs/tag/cbuilder" title="C++Builder" rel="tag">C++Builder</a>, <a href="http://yoshidastyle.net/Blogs/tag/%e3%82%a2%e3%82%a4%e3%82%b3%e3%83%b3%e3%81%ae%e6%95%b4%e5%88%97" title="アイコンの整列" rel="tag">アイコンの整列</a>, <a href="http://yoshidastyle.net/Blogs/tag/%e4%b8%a6%e3%81%b9%e3%81%a6%e8%a1%a8%e7%a4%ba" title="並べて表示" rel="tag">並べて表示</a>, <a href="http://yoshidastyle.net/Blogs/tag/%e9%87%8d%e3%81%ad%e3%81%a6%e8%a1%a8%e7%a4%ba" title="重ねて表示" rel="tag">重ねて表示</a><br />
]]></content:encoded>
			<wfw:commentRss>http://yoshidastyle.net/Blogs/uncategorized/2009/03/02/mdi%ef%bd%94%ef%bd%8f%ef%bd%90%ef%bd%89%ef%bd%83/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

