WPF and XAML - HOWTO: Difference between revisions

From Yggenyk
Jump to navigation Jump to search
(New page: Category:English pages Category:Software development ===Label without accelerator=== <source lang="cs"> <Label> <ContentPresente...)
 
No edit summary
Line 2: Line 2:
[[Category:Software development]]
[[Category:Software development]]
===Label without accelerator===
===Label without accelerator===
<source lang="cs">
<source lang="csharp">
                         <Label>
                         <Label>
                             <ContentPresenter RecognizesAccessKey="False" Content="_123">
                             <ContentPresenter RecognizesAccessKey="False" Content="_123">

Revision as of 19:44, 23 September 2009

Label without accelerator

<source lang="csharp">

                       <Label>
                           <ContentPresenter RecognizesAccessKey="False" Content="_123">
                           </ContentPresenter>
                       </Label>

</source>

id=siteTree