TechNet
Products
IT Resources
Downloads
Training
Support
Products
Windows
Windows Server
System Center
Microsoft Edge
Office
Office 365
Exchange Server
SQL Server
SharePoint Products
Skype for Business
See all products »
Resources
Channel 9 Video
Evaluation Center
Learning Resources
Microsoft Tech Companion App
Microsoft Technical Communities
Microsoft Virtual Academy
Script Center
Server and Tools Blogs
TechNet Blogs
TechNet Flash Newsletter
TechNet Gallery
TechNet Library
TechNet Magazine
TechNet Wiki
Windows Sysinternals
Virtual Labs
Solutions
Networking
Cloud and Datacenter
Security
Virtualization
Updates
Service Packs
Security Bulletins
Windows Update
Trials
Windows Server 2016
System Center 2016
Windows 10 Enterprise
SQL Server 2016
See all trials »
Related Sites
Microsoft Download Center
Microsoft Evaluation Center
Drivers
Windows Sysinternals
TechNet Gallery
Training
Expert-led, virtual classes
Training Catalog
Class Locator
Microsoft Virtual Academy
Free Windows Server 2012 courses
Free Windows 8 courses
SQL Server training
Microsoft Official Courses On-Demand
Certifications
Certification overview
Special offers
MCSE Cloud Platform and Infrastructure
MCSE: Mobility
MCSE: Data Management and Analytics
MCSE Productivity
Other resources
Microsoft Events
Exam Replay
Born To Learn blog
Find technical communities in your area
Azure training
Official Practice Tests
Support options
For business
For developers
For IT professionals
For technical support
Support offerings
More support
Microsoft Premier Online
TechNet Forums
MSDN Forums
Security Bulletins & Advisories
Not an IT pro?
Microsoft Customer Support
Microsoft Community Forums
Sign in
Home
Library
Wiki
Learn
Gallery
Downloads
Support
Forums
Blogs
Resources For IT Professionals
United States (English)
Россия (Pусский)
中国(简体中文)
Brasil (Português)
Skip to locale bar
Get this Tag RSS feed
Tag Cloud
Active Directory
AD
AD DS
adfs
ASP.NET
azure
BizTalk
BizTalk Server
BizTalk Server 2010
C#
Candidate for deletion
cloud
core docs
de-DE
EAA
Ed Price
Ed's Stub Pages
en-US
ESA
es-ES
Excel
Exchange
Exchange 2010
Exchange Server 2010
fa-IR
Fernando Lugao Veltem
FIM
FIM 2010
FIM-HELP
forefront
fr-FR
Gokan Ozcifci
has code
has comment
has comments
has image
has Images
has Other Languages
has See Also
Has Table
Has TOC
Horizon_Net
How To
Hyper-V
id-ID
Italian Wiki Articles
it-IT
ja-JP
Jordano Mazzoni
Link Collection
Luciano Lima
Luigi Bruno
Luiz Henrique Lima Campos
Lync Server 2010
marcelo strippoli
Microsoft
MIISILMFIM MACAULAY
Multi Language Wiki Articles
needs work
operations manager
Pirated Content
Portal
Português Brasil
PowerShell
pt-BR
ru-RU
security
SharePoint
SharePoint 2010
SharePoint 2013
Small Basic
solucionando problemas
SQL Server
SQL Server 2012
stub
System Center
System Center 2012
TechNet Guru
TechNet Wiki
TechNet Wiki Featured Article
tonyso
Translated into Portuguese
troubleshooting
tr-TR
vídeo
Video
Virtualization
VMM
Wiki
Windows
Windows 7
Windows 8
Windows Azure
Windows Server
Windows Server 2003
Windows Server 2008
Windows Server 2008 R2
Windows Server 2012
yottun8
اکتیو دایرکتوری
Wiki
>
All Tags
>
C#
Tagged Content List
Wiki Page:
How to Concatenate Strings into a Single Wrapping TextBlock (with Wrapping on Each Word)
Richard Mueller
This "How To" shows several concepts around grouping and wrapping text. It also shows just how flexible the TextBlock now is, since the introduction of Runs. Each Run can have different styles, cursors, even events like MouseLeftButtonDown For this scenario, a WPF Forum poster...
on
13 Aug 2013
Wiki Page:
Articoli Italiani su TechNet Wiki - C# (it-IT)
Emiliano Musso
Table of Contents Introduzione Elenco articoli Vedere anche Introduzione Questa pagina contiene un elenco diviso in categorie degli articoli in lingua italiana presenti sul TechNet Wiki e relativi al linguaggio di programmazione C# , sia scritti originariamente in Italiano che tradotti...
on
9 Aug 2013
Wiki Page:
Utilizando IEnumerable
Mauricio Junior - MCP, MCAD, MVP Microsoft
Olá pessoal, hoje eu vou falar e mostrar um pouco sobre como pegar os valores de um IEnumerable em forma de propriedade. Além de mostrar as várias maneiras de utilizar o retorno desse tipo. O grande problema hoje é a forma de pegar os dados, a melhor maneira de pegar os dados é utilizando propriedades...
on
8 Aug 2013
Wiki Page:
Building an App using the DataviewModel from external XML
Ed Price - MSFT
The title pretty much explains everything we will find in this article and solution to this question We will be using data from xml file to build our own data model and then finally displaying that to end user. ( Actual Question Image Link ) Basically this question answers three things...
on
7 Aug 2013
Wiki Page:
Nesting, ListView inside ListView DataTemplate (Or TreeView representation)
Ed Price - MSFT
This article builds a data model to represent the nesting relationship which can be displayed in a tree like structure inside nested ListViews. This tries to solve this MSDN problem and create a structure as shown below Data Model class Menu { public ObservableCollection<...
on
6 Aug 2013
Wiki Page:
Display Images in GridView/ListView using DataBinding
Ed Price - MSFT
This article shows how easy it is to display images in ItemsControl element using simple DataBinding. Answer posted to these MSDN questions ( 1 , 2 ) Let's take a look at this sample code for the implementation details: < GridView x:Name = "gridView" ItemsSource...
on
6 Aug 2013
Wiki Page:
WebView - Dynamic Html Page with Images (MVVM)
Naomi N
This article provides support for WebView in Windows 8 to display local html file or html page created dynamically. Oftentimes developers are looking to display local html file but due to the WebView restrictions (for security reasons) are not able to achieve it. This also caters to following Code...
on
6 Aug 2013
Wiki Page:
C#: Ensure User only Runs One Copy of a Program
Ed Price - MSFT
Using a mutex, you can ensure that multiple users can run a program, but each one can run only one copy of the program. This can come in handy when users are logging into a Citrix server or other shared server, and you don't want to limit the application to running only once. The following...
on
6 Aug 2013
Wiki Page:
C# vs CLR Datatype
Naomi N
Source reference Content below is a transcript of the following discussion http://stackoverflow.com/questions/7074/whats-the-difference-between-string-and-string All the content contributed to Stack Overflow, Stack Overflow Meta, Server Fault, and Super User is cc-wiki (aka cc-by-sa )...
on
6 Aug 2013
Wiki Page:
C# Calcolare numero di files presenti in un dato percorso (it-IT)
Emiliano Musso
Il seguente snippet di codice permette di eseguire – dato un percorso iniziale ed un pattern file da considerare – un rapido conteggio dei files presenti nell'intera gerarchia della directory indicata, ovvero nella cartella stessa ed in tutte le sottodirectory ad essa relative. La funzione qui...
on
6 Aug 2013
Wiki Page:
Named Pipes IO for Inter-process Communication
Ed Price - MSFT
Introduction Use the .NET 3.5 Named Pipes IO for Inter-process communication by implementing a pipe listener on a separate thread. The first sample is a WPF project. It can also be done just as easily in Windows forms. Description The sample demonstrates how to pass string data from clients...
on
5 Aug 2013
Wiki Page:
La classe Multibinding in Wpf e C# (it-IT)
Carmelo La Monica
In questo semplice esempio vedremo come utilizzare la Classe Multibinding . La classe MultiBinding consente di associare una proprietà di destinazione dell'associazione a un elenco di proprietà di origine e di applicare quindi una logica per produrre un valore con gli input specificati. In questo...
on
5 Aug 2013
Wiki Page:
C# Convert an .Ico File to a .Bmp
Carmelo La Monica
In this example, using the Bitmap class included in the System.Drawing namespace, an .ico file is converted to a .bmp file to display it in a PictureBox. This is necessary because the .ico format is not supported by the PictureBox control. using System.Drawing; using System.Windows.Forms; namespace...
on
5 Aug 2013
Page 5 of 14 (350 items)
«
3
4
5
6
7
»