<?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>CSharp Archive - MetinCelik.de</title>
	<atom:link href="https://www.metincelik.de/tag/csharp/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.metincelik.de/tag/csharp/</link>
	<description>Tipps, Tutorials, Blog, Webentwicklung, Design, SciFi</description>
	<lastBuildDate>Sun, 15 Mar 2026 04:56:45 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>CSharp Kochbuch</title>
		<link>https://www.metincelik.de/bucher/informatik/programmiersprachen/csharp-programmiersprachen/csharp-kochbuch/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=csharp-kochbuch</link>
		
		<dc:creator><![CDATA[MetinC]]></dc:creator>
		<pubDate>Tue, 17 May 2022 12:15:18 +0000</pubDate>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Heimwerken]]></category>
		<category><![CDATA[Werkzeug]]></category>
		<guid isPermaLink="false">https://www.metincelik.de/?p=3128</guid>

					<description><![CDATA[<p>Der Beitrag <a href="https://www.metincelik.de/bucher/informatik/programmiersprachen/csharp-programmiersprachen/csharp-kochbuch/">CSharp Kochbuch</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://amzn.to/4aG2cFX" target="_blank" rel="noopener"><img decoding="async" src="https://images-na.ssl-images-amazon.com/images/I/4185842VMML._SX379_BO1,204,203,200_.jpg"/></a></p>
<p>Der Beitrag <a href="https://www.metincelik.de/bucher/informatik/programmiersprachen/csharp-programmiersprachen/csharp-kochbuch/">CSharp Kochbuch</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>DateTime &#8211; Aktueller Datum minus 20 Tage</title>
		<link>https://www.metincelik.de/programmierung/csharp/datetime-aktueller-datum-minus-20-tage/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=datetime-aktueller-datum-minus-20-tage</link>
					<comments>https://www.metincelik.de/programmierung/csharp/datetime-aktueller-datum-minus-20-tage/#respond</comments>
		
		<dc:creator><![CDATA[MetinC]]></dc:creator>
		<pubDate>Tue, 26 Jun 2012 13:05:48 +0000</pubDate>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Aktueller]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[DateTime]]></category>
		<category><![CDATA[Datum]]></category>
		<category><![CDATA[Heimwerken]]></category>
		<category><![CDATA[minus]]></category>
		<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[Tage]]></category>
		<category><![CDATA[Werkzeug]]></category>
		<guid isPermaLink="false">http://www.metincelik.de/?p=1807</guid>

					<description><![CDATA[<p>In Visual Basic gibt es die Funktionen DateAdd und DateDiff, mit denen man den DateTime manipulieren kann. Diese sind in CSharp .NET nicht implementiert. Ich hatte mir überlegt, wie ein Kollege aus Indien die Funktionen selbst zu implementieren, wie hier: DateDiff and DateAdd in C# Aber es geht einfacher mit einem zweizeiligen C# Code: DateTime [&#8230;]</p>
<p>Der Beitrag <a href="https://www.metincelik.de/programmierung/csharp/datetime-aktueller-datum-minus-20-tage/">DateTime &#8211; Aktueller Datum minus 20 Tage</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In Visual Basic gibt es die Funktionen DateAdd und DateDiff, mit denen man den DateTime manipulieren kann. Diese sind in CSharp .NET nicht implementiert. Ich hatte mir überlegt, wie ein Kollege aus Indien die Funktionen selbst zu implementieren, wie hier: <a target="_blank" title="DateDiff and DateAdd in C#" href="http://srinutamada1.wordpress.com/category/technology/c/datediff-and-dateadd-in-c/">DateDiff and DateAdd in C#</a> </p>
<p>Aber es geht einfacher mit einem zweizeiligen C# Code:</p>
<pre class="brush: csharp; gutter: true; first-line: 1; highlight: []; html-script: false">            DateTime dt = DateTime.Now;
            dt = dt.AddDays(-20);</pre>
<p></p>
<p>Der Beitrag <a href="https://www.metincelik.de/programmierung/csharp/datetime-aktueller-datum-minus-20-tage/">DateTime &#8211; Aktueller Datum minus 20 Tage</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.metincelik.de/programmierung/csharp/datetime-aktueller-datum-minus-20-tage/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>ASP.NET 3.5 mit Visual C# 2008. Leistungsfähige Webapplikationen programmieren</title>
		<link>https://www.metincelik.de/bucher/informatik/programmiersprachen/csharp-programmiersprachen/asp-net-3-5-mit-visual-c-2008-leistungsfahige-webapplikationen-programmieren/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=asp-net-3-5-mit-visual-c-2008-leistungsfahige-webapplikationen-programmieren</link>
					<comments>https://www.metincelik.de/bucher/informatik/programmiersprachen/csharp-programmiersprachen/asp-net-3-5-mit-visual-c-2008-leistungsfahige-webapplikationen-programmieren/#respond</comments>
		
		<dc:creator><![CDATA[MetinC]]></dc:creator>
		<pubDate>Tue, 17 Jan 2012 11:02:43 +0000</pubDate>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Heimwerken]]></category>
		<category><![CDATA[Leistungsfähige]]></category>
		<category><![CDATA[Programmieren]]></category>
		<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[Visual]]></category>
		<category><![CDATA[Webapplikationen]]></category>
		<category><![CDATA[Werkzeug]]></category>
		<guid isPermaLink="false">http://www.metincelik.de/?p=1528</guid>

					<description><![CDATA[<p>Kurzbeschreibung Mit ASP.NET 3.5 ist Microsofts Technologie zur Programmierung dynamischer Webseiten noch leistungsfähiger geworden. Gegenüber ASP.NET 2.0 gibt es zahlreiche Verbesserungen, unter anderem die die integrierte Ajax-Unterstützung und verbesserte Datenbankfunktionalität mit LINQ. Die Autoren gehen auf alle wesentlichen Bestandteile von ASP.NET 3.5 ein und bieten ausführliche Beschreibungen zur Verarbeitung von Formulareingaben, zum Umgang mit Cookies [&#8230;]</p>
<p>Der Beitrag <a href="https://www.metincelik.de/bucher/informatik/programmiersprachen/csharp-programmiersprachen/asp-net-3-5-mit-visual-c-2008-leistungsfahige-webapplikationen-programmieren/">ASP.NET 3.5 mit Visual C# 2008. Leistungsfähige Webapplikationen programmieren</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>Kurzbeschreibung</strong><br />
Mit ASP.NET 3.5 ist Microsofts Technologie zur Programmierung dynamischer Webseiten noch leistungsfähiger geworden. Gegenüber ASP.NET 2.0 gibt es zahlreiche Verbesserungen, unter anderem die die integrierte Ajax-Unterstützung und verbesserte Datenbankfunktionalität mit LINQ.</p>
<p>Die Autoren gehen auf alle wesentlichen Bestandteile von ASP.NET 3.5 ein und bieten ausführliche Beschreibungen zur Verarbeitung von Formulareingaben, zum Umgang mit Cookies und Dateien bis hin zum Zugriff auf Datenbanken und XML-Datenquellen sowie Web Services. Außerdem erfahren Sie alles zu den wichtigen Neuerungen wie ASP.NET AJAX, LINQ und der Entwicklungsumgebung Visual Studio 2008. Im Vordergrund stehen die konkreten Anforderungen des Webentwickler-Alltags. Unterhaltsam und anschaulich aufbereitet führt Sie dieses Buch auch zu fortgeschrittenen Themen wie der dynamischen Generierung von Grafiken, den Web Parts und der Performancesteigerung durch Caching. Ein eigenes Kapitel widmet sich der Erstellung von Rich Internet Applications (RIA) mit Silverlight.</p>
<p><strong>Aus dem Inhalt</strong></p>
<ul>
<li>.NET: Grundlagen, Architektur und Installation</li>
<li>HTML Controls, Web Controls und Web Parts</li>
<li>Masterseiten, Themes und Skins</li>
<li>Security: Benutzer- und Rollenverwaltung</li>
<li>ASP.NET AJAX und Silverlight</li>
<li>LINQ und Datenbankzugriff mit ADO.NET</li>
<li>XML und Web Services</li>
<li>Lokalisierung und Inhalte für mobile Endgeräte</li>
<li>Debugging</li>
<li>Caching</li>
<li>Web-Hacking (und Gegenmittel)</li>
<li>Spracheinführung C# 3.0</li>
</ul>
<p><strong>Auf DVD</strong></p>
<ul>
<li>Alle Listings und Beispiele aus dem Buch</li>
<li>Visual Studio 2008 Express Edition</li>
</ul>
<p><strong>Über die Autoren</strong><br />
Christian Wenz, Tobias Hauser, Karsten Samaschke, und Jürgen Kotz sind erfolgreiche Autoren bei Addison-Wesley mit dem Schwerpunkt Webprogrammierung und .NET. Aufgrund ihrer langjährigen Praxiserfahrung verstehen sie es, den Fokus auf Themen zu legen, die für den Leser tatsächlich relevant sind. Wenz und Samaschke wurden für Ihren Einsatz für die Entwickler-Community mehrmals von Microsoft mit dem MVP-Titel (Most Valuable Professional) für ASP/ASP.NET ausgezeichnet. </p>
<p>Titel: <strong>ASP.NET 3.5 mit Visual C# 2008</strong>. Leistungsfähige Webapplikationen programmieren<br />
Autoren: <strong>Christian Wenz, Tobias Hauser , Karsten Samaschke , Jürgen Kotz</strong><br />
Gebundene Ausgabe: 1168 Seiten<br />
Verlag: Addison-Wesley, Muenchen, Pearson Education; Auflage: 1 (2008)<br />
Sprache: Deutsch<br />
ISBN-10: 3827323029<br />
ISBN-13: 978-3827323026</p>
<p><iframe src="http://rcm-de.amazon.de/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=steel07-21&#038;o=3&#038;p=8&#038;l=as4&#038;m=amazon&#038;f=ifr&#038;ref=ss_til&#038;asins=3827323029" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></p>
<p>Der Beitrag <a href="https://www.metincelik.de/bucher/informatik/programmiersprachen/csharp-programmiersprachen/asp-net-3-5-mit-visual-c-2008-leistungsfahige-webapplikationen-programmieren/">ASP.NET 3.5 mit Visual C# 2008. Leistungsfähige Webapplikationen programmieren</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.metincelik.de/bucher/informatik/programmiersprachen/csharp-programmiersprachen/asp-net-3-5-mit-visual-c-2008-leistungsfahige-webapplikationen-programmieren/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to coloring every second row in ListView</title>
		<link>https://www.metincelik.de/programmierung/csharp/how-to-coloring-every-second-row-in-listview/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-coloring-every-second-row-in-listview</link>
					<comments>https://www.metincelik.de/programmierung/csharp/how-to-coloring-every-second-row-in-listview/#respond</comments>
		
		<dc:creator><![CDATA[MetinC]]></dc:creator>
		<pubDate>Fri, 23 Dec 2011 11:55:56 +0000</pubDate>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Heimwerken]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[Werkzeug]]></category>
		<category><![CDATA[Windows Forms]]></category>
		<guid isPermaLink="false">http://www.metincelik.de/?p=1398</guid>

					<description><![CDATA[<p>This c# code shows you how you coloring every second row in a ListView: int i = 0; foreach (ListViewItem item in listView1.Items) { if (i++ % 2 == 1) { item.BackColor = Color.LightGray; item.ForeColor = Color.BlueViolet; item.UseItemStyleForSubItems = true; } }</p>
<p>Der Beitrag <a href="https://www.metincelik.de/programmierung/csharp/how-to-coloring-every-second-row-in-listview/">How to coloring every second row in ListView</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This c# code shows you how you coloring every second row in a ListView:</p>
<pre class="brush: csharp; gutter: true; first-line: 1; highlight: []; html-script: false">
int i = 0;
foreach (ListViewItem item in listView1.Items)
{
    if (i++ % 2 == 1)
    {
        item.BackColor = Color.LightGray;
        item.ForeColor = Color.BlueViolet;
        item.UseItemStyleForSubItems = true;
    }
}</pre>
<p><img decoding="async" title="ListView with every second colored row" alt="listview" src="http://dl.dropbox.com/u/54007317/web/csharp-how-to-coloring-every-second-row-in-listview.png" /></p>
<p>Der Beitrag <a href="https://www.metincelik.de/programmierung/csharp/how-to-coloring-every-second-row-in-listview/">How to coloring every second row in ListView</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.metincelik.de/programmierung/csharp/how-to-coloring-every-second-row-in-listview/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to clear the items in ListView</title>
		<link>https://www.metincelik.de/programmierung/csharp/how-to-clear-the-items-in-listview/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-clear-the-items-in-listview</link>
					<comments>https://www.metincelik.de/programmierung/csharp/how-to-clear-the-items-in-listview/#respond</comments>
		
		<dc:creator><![CDATA[MetinC]]></dc:creator>
		<pubDate>Fri, 23 Dec 2011 11:46:39 +0000</pubDate>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Heimwerken]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[Werkzeug]]></category>
		<category><![CDATA[Windows Forms]]></category>
		<guid isPermaLink="false">http://www.metincelik.de/?p=1396</guid>

					<description><![CDATA[<p>// Clear the ListView control listView1.Items.Clear();</p>
<p>Der Beitrag <a href="https://www.metincelik.de/programmierung/csharp/how-to-clear-the-items-in-listview/">How to clear the items in ListView</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></description>
										<content:encoded><![CDATA[<pre class="brush: csharp; gutter: true; first-line: 1; highlight: []; html-script: false">
// Clear the ListView control
listView1.Items.Clear();
</pre>
<p>Der Beitrag <a href="https://www.metincelik.de/programmierung/csharp/how-to-clear-the-items-in-listview/">How to clear the items in ListView</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.metincelik.de/programmierung/csharp/how-to-clear-the-items-in-listview/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How you can initialize ListView</title>
		<link>https://www.metincelik.de/programmierung/csharp/how-you-can-initialize-listview/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-you-can-initialize-listview</link>
					<comments>https://www.metincelik.de/programmierung/csharp/how-you-can-initialize-listview/#respond</comments>
		
		<dc:creator><![CDATA[MetinC]]></dc:creator>
		<pubDate>Fri, 23 Dec 2011 10:59:02 +0000</pubDate>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Heimwerken]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[Werkzeug]]></category>
		<category><![CDATA[Windows Forms]]></category>
		<guid isPermaLink="false">http://www.metincelik.de/?p=1392</guid>

					<description><![CDATA[<p>// Set the view to show details. listView1.View = View.Details; // Allow the user to edit item text. listView1.LabelEdit = true; // Allow the user to rearrange columns. listView1.AllowColumnReorder = true; // Select the item and subitems when selection is made. listView1.FullRowSelect = true; // Display grid lines. listView1.GridLines = true; // Sort the items [&#8230;]</p>
<p>Der Beitrag <a href="https://www.metincelik.de/programmierung/csharp/how-you-can-initialize-listview/">How you can initialize ListView</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></description>
										<content:encoded><![CDATA[<pre class="brush: csharp; gutter: true; first-line: 1; highlight: []; html-script: false">
// Set the view to show details.
listView1.View = View.Details;

// Allow the user to edit item text.
listView1.LabelEdit = true;

// Allow the user to rearrange columns.
listView1.AllowColumnReorder = true;

// Select the item and subitems when selection is made.
listView1.FullRowSelect = true;

// Display grid lines.
listView1.GridLines = true;

// Sort the items in the list in ascending order.
listView1.Sorting = SortOrder.Ascending;

// Attach subitems to the ListView
listView1.Columns.Add(&quot;Column 1&quot;, 120, HorizontalAlignment.Left);
listView1.Columns.Add(&quot;Column 2&quot;, 60, HorizontalAlignment.Left);
listView1.Columns.Add(&quot;Column 3&quot;, 100, HorizontalAlignment.Left);
listView1.Columns.Add(&quot;Column 4&quot;, 100, HorizontalAlignment.Right);
</pre>
<p>Der Beitrag <a href="https://www.metincelik.de/programmierung/csharp/how-you-can-initialize-listview/">How you can initialize ListView</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.metincelik.de/programmierung/csharp/how-you-can-initialize-listview/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to add rows, items and subitems in a listview</title>
		<link>https://www.metincelik.de/programmierung/csharp/how-to-add-rows-items-and-subitems-in-a-listview/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-add-rows-items-and-subitems-in-a-listview</link>
					<comments>https://www.metincelik.de/programmierung/csharp/how-to-add-rows-items-and-subitems-in-a-listview/#respond</comments>
		
		<dc:creator><![CDATA[MetinC]]></dc:creator>
		<pubDate>Fri, 23 Dec 2011 10:42:53 +0000</pubDate>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Heimwerken]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[Werkzeug]]></category>
		<category><![CDATA[Windows Forms]]></category>
		<guid isPermaLink="false">http://www.metincelik.de/?p=1384</guid>

					<description><![CDATA[<p>This c# code shows you, how to add a row in a listview: ListViewItem row = new ListViewItem(); row.SubItems.Add(value.ToString()); listview1.Items.Add(row); This creates 3 items and 3 subitems in a listview: // Create three items and three sets of subitems for each item. ListViewItem item1 = new ListViewItem(&#34;Item 1&#34;, 0); item1.SubItems.Add(&#34;Item1 Subitem 1&#34;); item1.SubItems.Add(&#34;Item1 Subitem 2&#34;); [&#8230;]</p>
<p>Der Beitrag <a href="https://www.metincelik.de/programmierung/csharp/how-to-add-rows-items-and-subitems-in-a-listview/">How to add rows, items and subitems in a listview</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This c# code shows you, how to add a row in a listview:</p>
<pre class="brush: csharp; gutter: true; first-line: 1; highlight: []; html-script: false">
ListViewItem row = new ListViewItem(); 
row.SubItems.Add(value.ToString()); 
listview1.Items.Add(row);
</pre>
<p>This creates 3 items and 3 subitems in a listview:</p>
<pre class="brush: csharp; gutter: true; first-line: 1; highlight: []; html-script: false">
// Create three items and three sets of subitems for each item.
ListViewItem item1 = new ListViewItem(&quot;Item 1&quot;, 0);
item1.SubItems.Add(&quot;Item1 Subitem 1&quot;);
item1.SubItems.Add(&quot;Item1 Subitem 2&quot;);
item1.SubItems.Add(&quot;Item1 Subitem 3&quot;);
ListViewItem item2 = new ListViewItem(&quot;Item 2&quot;, 1);
item2.SubItems.Add(&quot;Item2 Subitem 1&quot;);
item2.SubItems.Add(&quot;Item2 Subitem 2&quot;);
item2.SubItems.Add(&quot;Item2 Subitem 3&quot;);
ListViewItem item3 = new ListViewItem(&quot;Item 3&quot;, 1);
item3.SubItems.Add(&quot;Item3 Subitem 1&quot;);
item3.SubItems.Add(&quot;Item3 Subitem 2&quot;);
item3.SubItems.Add(&quot;Item3 Subitem 3&quot;);

//Add the items to the ListView.
listView1.Items.AddRange(new ListViewItem[] { item1, item2, item3 });
</pre>
<p>or</p>
<pre class="brush: csharp; gutter: true; first-line: 1; highlight: []; html-script: false">
// add a row with an item
listView1.Items.Add (new ListViewItem (&quot;Row 1&quot;));
</pre>
<p>or</p>
<pre class="brush: csharp; gutter: true; first-line: 1; highlight: []; html-script: false">
// add a row with an item and 3 subitems in a line
listView1.Items.Add(new ListViewItem(new string[] { &quot;Item1&quot;, &quot;Sub1&quot;, &quot;Sub2&quot;, &quot;Sub3&quot; }));
</pre>
<p>Der Beitrag <a href="https://www.metincelik.de/programmierung/csharp/how-to-add-rows-items-and-subitems-in-a-listview/">How to add rows, items and subitems in a listview</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.metincelik.de/programmierung/csharp/how-to-add-rows-items-and-subitems-in-a-listview/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to add columns in listview</title>
		<link>https://www.metincelik.de/programmierung/csharp/how-to-add-columns-in-listview/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-add-columns-in-listview</link>
					<comments>https://www.metincelik.de/programmierung/csharp/how-to-add-columns-in-listview/#respond</comments>
		
		<dc:creator><![CDATA[MetinC]]></dc:creator>
		<pubDate>Fri, 23 Dec 2011 10:06:49 +0000</pubDate>
				<category><![CDATA[CSharp]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Heimwerken]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[Werkzeug]]></category>
		<category><![CDATA[Windows Forms]]></category>
		<guid isPermaLink="false">http://www.metincelik.de/?p=1375</guid>

					<description><![CDATA[<p>This c# code creates columns with columnheader for the items and subitems in a listview. There are different ways to create columns. ColumnHeader column1 = new ColumnHeader(); column1.Width = 100; column1.Text = &#34;Column 1&#34;; column1.TextAlign = HorizontalAlignment.Right; listView1.Columns.Add(column1); listView1.Columns.Add(&#34;Column 2&#34;, 120, HorizontalAlignment.Center); // Width of -1 indicates to adjust the width of the longest item [&#8230;]</p>
<p>Der Beitrag <a href="https://www.metincelik.de/programmierung/csharp/how-to-add-columns-in-listview/">How to add columns in listview</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This c# code creates columns with columnheader for the items and subitems in a listview. There are different ways to create columns.</p>
<pre class="brush: csharp; gutter: true; first-line: 1; highlight: []; html-script: false">
ColumnHeader column1 = new ColumnHeader();
column1.Width = 100;
column1.Text = &quot;Column 1&quot;;
column1.TextAlign = HorizontalAlignment.Right;            
listView1.Columns.Add(column1);

listView1.Columns.Add(&quot;Column 2&quot;, 120, HorizontalAlignment.Center);

// Width of -1 indicates to adjust the width of the longest item in the column.
listView1.Columns.Add(&quot;Column 3&quot;, -1, HorizontalAlignment.Left);

// Width of -2 indicates to autosize to the width of the column heading.
listView1.Columns.Add(&quot;Column 4&quot;, -2, HorizontalAlignment.Left);
</pre>
<p>Der Beitrag <a href="https://www.metincelik.de/programmierung/csharp/how-to-add-columns-in-listview/">How to add columns in listview</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.metincelik.de/programmierung/csharp/how-to-add-columns-in-listview/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Zeilennummern in Visual Studio 2008 anzeigen</title>
		<link>https://www.metincelik.de/programmierung/zeilennummern-in-visual-studio-2008-anzeigen/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=zeilennummern-in-visual-studio-2008-anzeigen</link>
					<comments>https://www.metincelik.de/programmierung/zeilennummern-in-visual-studio-2008-anzeigen/#respond</comments>
		
		<dc:creator><![CDATA[MetinC]]></dc:creator>
		<pubDate>Thu, 12 Nov 2009 10:31:21 +0000</pubDate>
				<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[CPP]]></category>
		<category><![CDATA[CSharp]]></category>
		<category><![CDATA[Heimwerken]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>
		<category><![CDATA[Werkzeug]]></category>
		<guid isPermaLink="false">http://www.metincelik.de/?p=904</guid>

					<description><![CDATA[<p>Deutschsprachige IDE Schritt 1: Extras/Optionen wählen Schritt 2: Knoten &#8222;Texteditor&#8220; expandieren und den Knoten &#8222;Alle Sprachen&#8220; wählen Schritt 3: Im rechten Dialog die Option &#8222;Zeilennummern&#8220; unter Anzeigen aktivieren Schritt 4: Schaltfläche &#8222;OK&#8220; klicken und fertig Englischsprachige IDE Schritt 1: Tools/Options wählen Schritt 2: Knoten &#8222;Texteditor&#8220; expandieren und den Knoten &#8222;All Languages&#8220; wählen Schritt 3: Im [&#8230;]</p>
<p>Der Beitrag <a href="https://www.metincelik.de/programmierung/zeilennummern-in-visual-studio-2008-anzeigen/">Zeilennummern in Visual Studio 2008 anzeigen</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>Deutschsprachige IDE</strong></p>
<p>Schritt 1: Extras/Optionen wählen<br />
Schritt 2: Knoten &#8222;Texteditor&#8220; expandieren und den Knoten &#8222;Alle Sprachen&#8220; wählen<br />
Schritt 3: Im rechten Dialog die Option &#8222;Zeilennummern&#8220; unter Anzeigen aktivieren<br />
Schritt 4: Schaltfläche &#8222;OK&#8220; klicken und fertig</p>
<p><strong>Englischsprachige IDE</strong></p>
<p>Schritt 1: Tools/Options wählen<br />
Schritt 2: Knoten &#8222;Texteditor&#8220; expandieren und den Knoten &#8222;All Languages&#8220; wählen<br />
Schritt 3: Im rechten Dialog die Option &#8222;Line numbers&#8220; unter Display aktivieren<br />
Schritt 4: Schaltfläche &#8222;OK&#8220; klicken und fertig</p>
<p>Der Beitrag <a href="https://www.metincelik.de/programmierung/zeilennummern-in-visual-studio-2008-anzeigen/">Zeilennummern in Visual Studio 2008 anzeigen</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.metincelik.de/programmierung/zeilennummern-in-visual-studio-2008-anzeigen/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WordPress Plugin WP-Syntax</title>
		<link>https://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-plugin-wp-syntax</link>
					<comments>https://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/#comments</comments>
		
		<dc:creator><![CDATA[MetinC]]></dc:creator>
		<pubDate>Wed, 30 Sep 2009 12:05:41 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[CPP]]></category>
		<category><![CDATA[CSharp]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Heimwerken]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Programmiersprache]]></category>
		<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[Werkzeug]]></category>
		<guid isPermaLink="false">http://www.metincelik.de/?p=826</guid>

					<description><![CDATA[<p>WP-Syntax bietet saubere Syntaxhervorhebung mit Unterstützung einer Vielzahl von gängigen Programmiersprachen. Es unterstützt die Hervorhebung mit oder ohne Zeilennummern und behält Formatierungen beim Kopieren von Code-Snippets aus dem Browser. Code-Blöcke werden mit &#60;pre lang=&#8220;LANGUAGE&#8220; line=&#8220;1&#8243;&#62; und &#60;/pre&#62; definiert. Der Platzhalter LANGUAGE soll durch die unterstützte Programmiersprachen ersetzt werden. Weiter unten finden Sie eine vollständige Liste [&#8230;]</p>
<p>Der Beitrag <a href="https://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/">WordPress Plugin WP-Syntax</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>WP-Syntax</strong> bietet saubere Syntaxhervorhebung mit Unterstützung einer Vielzahl von gängigen Programmiersprachen. Es unterstützt die Hervorhebung mit oder ohne Zeilennummern und behält Formatierungen beim Kopieren von Code-Snippets aus dem Browser.</p>
<p>Code-Blöcke werden mit  &lt;pre lang=&#8220;LANGUAGE&#8220; line=&#8220;1&#8243;&gt; und &lt;/pre&gt; definiert. Der Platzhalter LANGUAGE soll durch die unterstützte Programmiersprachen ersetzt werden. Weiter unten finden Sie eine vollständige Liste der unterstützten Sprachen. Das Zeieleattribut ist optional wählbar.</p>
<p><strong>Beispiele</strong></p>
<p>Beispiel 1: PHP, keine Zeilennummer</p>
<blockquote><p>&lt;pre lang=&#8220;php&#8220;&gt;<br />
&lt;div id=&#8220;foo&#8220;&gt;<br />
&lt;?php<br />
  function foo() {<br />
    echo &#8222;Hello World!\\n&#8220;;<br />
  }<br />
?&gt;<br />
&lt;/div&gt;<br />
&lt;/pre&gt;</p></blockquote>
<p>Ansicht mit WP-Syntax:</p>
<pre lang="php">
&lt;div id=&quot;foo&quot;&gt;
&lt;?php
  function foo() {
    echo &quot;Hello World!\\n&quot;;
  }
?&gt;
&lt;/div&gt;
</pre>
<p>Beispiel 2: Java, mit Zeilennummern ab Zeile 1</p>
<blockquote><p>&lt;pre lang=&#8220;java&#8220; line=&#8220;1&#8243;&gt;<br />
public class Hello {<br />
  public static void main(String[] args) {<br />
    System.out.println(&#8222;Hello World!&#8220;);<br />
  }<br />
}<br />
&lt;/pre&gt;</p></blockquote>
<p>Ansicht mit WP-Syntax:</p>
<pre lang="java" line="1">
public class Hello {
  public static void main(String[] args) {
    System.out.println(&quot;Hello World!&quot;);
  }
}
</pre>
<p><strong>Unterstützte Programmiersprachen:</strong></p>
<p>Die folgende Sprachen werden im Attribut <strong>lang</strong> unterstützt:</p>
<p>abap, actionscript, actionscript3, ada, apache, applescript, aptsources, asm, <strong>asp</strong>, autoit, avisynth, bash, bf, bibtex, blitzbasic, bnf, boo, <strong>c</strong>, cmac, caddcl, cadlisp, cil, cfdg, cfm, cmake, cobol, cpp-qt, <strong>cpp</strong>, <strong>csharp</strong>, <strong>css</strong>, d, dcs, <strong>delphi</strong>, diff, div, dos, dot, eiffel, email, erlang, fo, fortran, freebasic, genero, gettext, glsl, gml, bnuplot, groovy, haskell, hq9plus, <strong>html4strict</strong>, idl, ini, inno, intercal, io, <strong>java</strong>, java5, <strong>javascript</strong>, kixtart, klonec, klonecpp, latex, lisp, locobasic, lolcode lotusformulas, lotusscript, lscript, lsl2, lua, m68k, make, matlab, mirc, modula3, mpasm, mxml, <strong>mysql</strong>, nsis, oberon2, objc, ocaml-brief, ocaml, oobas, oracle11, oracle8, pascal, per, pic16, pixelbender, perl, php-brief, <strong>php</strong>, plsql, povray, powershell, progress, prolog, properties, providex, python, qbasic, rails, rebol, reg, robots, ruby, sas, scala, scheme, scilab, sdlbasic, smalltalk, smarty, sql, tcl, teraterm, text, thinbasic, tsql, typoscript, <strong>vb</strong>, <strong>vbnet</strong>, verilog, vhdl, vim, visualfoxpro, visualprolog, whitespace, whois, winbatch, <strong>xml</strong>, xorg_conf, xpp, z80</p>
<p>Author Homepage: <a title="Ryan McGeary" href="http://ryan.mcgeary.org/" target="_blank">http://ryan.mcgeary.org</a><br />
Plugin Homepage: <a title="WP-Syntax" href="http://wordpress.org/extend/plugins/wp-syntax/" target="_blank">http://wordpress.org/extend/plugins/wp-syntax/</a></p>
<p><strong>Was ist Syntaxhervorhebung?</strong></p>
<p>Das sagt <a title="wikipedia.de" href="http://de.wikipedia.org/wiki/Syntaxhervorhebung" target="_blank">Wikipedia</a>:</p>
<blockquote><p>Syntaxhervorhebung (eng. syntax highlighting) bezeichnet die Möglichkeit eines Computerprogrammes, bestimmte Wörter und Zeichenkombinationen in einem Text abhängig von ihrer Bedeutung in unterschiedlichen Farben, Schriftarten und -stilen darzustellen. Syntaxhervorhebung wird vor allem in Texteditoren zur Bearbeitung von ausgezeichneten Dokumenten, Programm-Quelltexten und Konfigurationsdateien eingesetzt. Hervorgehoben werden dabei Schlüsselwörter und andere Sprachelemente.</p>
<p>Syntaxhervorhebung verbessert die Lesbarkeit von Texten: Strukturen im Text sind leichter zu erkennen, das „Querlesen“ wird vereinfacht, Kommentare erscheinen abgesetzt vom eigentlichen Code und Tippfehler fallen schneller auf, da in vielen Fällen ein Tippfehler zu einer veränderten Darstellung führt.</p>
<p>Die Syntaxhervorhebung gehört heutzutage zur Standardfunktionalität vieler integrierter Entwicklungsumgebungen und Texteditoren.</p></blockquote>
<p>Der Beitrag <a href="https://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/">WordPress Plugin WP-Syntax</a> erschien zuerst auf <a href="https://www.metincelik.de">MetinCelik.de</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.metincelik.de/wordpress/wordpress-plugin-wp-syntax/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
