Maison > interface Web > js tutoriel > le corps du texte

Style Bootstrap Style WPF

高洛峰
Libérer: 2016-12-29 13:11:37
original
1746 Les gens l'ont consulté

Introduction

Ce style est basé sur bootstrap-3.3.0. Le nombre de lignes de code source dans le fichier de style fait référence à cette version. Le fichier source CSS est placé dans bootstrap.css. le dossier Contenu

Les styles WPF ne sont toujours pas les mêmes que CSS, il existe donc de légères différences dans l'implémentation de certains contenus, l'utilisation de certains contenus est différente et certains contenus ne sont pas implémentés

Mais au moins, quelques concepts, tailles et sélections La couleur, ça reste une bonne référence

La description du blog est écrite dans l'ordre des documents officiels Bootstrap

La ressource Bootstrap.xaml est citée dans App.xaml

<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/BootstrapWpfStyle;component/Styles/Bootstrap.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
Copier après la connexion

Typesetting

Titre

Effet

Style Bootstrap Style WPF

Code

<Label Content="h1. Bootstrap heading" Style="{DynamicResource h1}"></Label>
<Label Content="h2. Bootstrap heading" Style="{DynamicResource h2}"></Label>
<Label Content="h3. Bootstrap heading" Style="{DynamicResource h3}"></Label>
<Label Content="h4. Bootstrap heading" Style="{DynamicResource h4}"></Label>
<Label Content="h5. Bootstrap heading" Style="{DynamicResource h5}"></Label>
<Label Content="h6. Bootstrap heading" Style="{DynamicResource h6}"></Label>
Copier après la connexion

Sous-titre

Effet

Style Bootstrap Style WPF

Code

<StackPanel Orientation="Horizontal">
<Label Content="h1. Bootstrap heading" Style="{DynamicResource h1}"></Label>
<Label Content="Secondary text" Style="{DynamicResource h1 small}"></Label>
</StackPanel>
<StackPanel Orientation="Horizontal">
<Label Content="h2. Bootstrap heading" Style="{DynamicResource h2}"></Label>
<Label Content="Secondary text" Style="{DynamicResource h2 small}"></Label>
</StackPanel>
<StackPanel Orientation="Horizontal">
<Label Content="h3. Bootstrap heading" Style="{DynamicResource h3}"></Label>
<Label Content="Secondary text" Style="{DynamicResource h3 small}"></Label>
</StackPanel>
<StackPanel Orientation="Horizontal">
<Label Content="h4. Bootstrap heading" Style="{DynamicResource h4}"></Label>
<Label Content="Secondary text" Style="{DynamicResource h4 small}"></Label>
</StackPanel>
<StackPanel Orientation="Horizontal">
<Label Content="h5. Bootstrap heading" Style="{DynamicResource h5}"></Label>
<Label Content="Secondary text" Style="{DynamicResource h5 small}"></Label>
</StackPanel>
<StackPanel Orientation="Horizontal">
<Label Content="h6. Bootstrap heading" Style="{DynamicResource h6}"></Label>
<Label Content="Secondary text" Style="{DynamicResource h6 small}"></Label>
</StackPanel>
Copier après la connexion

Code

Code en ligne

< ;Label> Lorsqu'il est utilisé, associez-le à un autre code

. 🎜>

entrée utilisateur

Style Bootstrap Style WPF

Effet

<StackPanel Orientation="Horizontal">
<Label Content="内联代码:For example, "></Label>
<Label Content="<section>" Style="{DynamicResource code}"></Label>
<Label Content=" should be wrapped as inline."></Label>
</StackPanel>
Copier après la connexion

Code

Bloc de code

Style Bootstrap Style WPF<Étiquette> pré-style

effet

<StackPanel Orientation="Horizontal">
<Label Content="用户输入:To edit settings, press "></Label>
<Label Content="ctrl + ," Style="{DynamicResource kbd}"></Label>
</StackPanel>
Copier après la connexion

code

texte auxiliaire

Style Bootstrap Style WPF

Effet

<Label xml:space="preserve" Style="{DynamicResource pre}">代码块:
Foreground:#333
Background:#f5f5f5
BorderBrush:#ccc</Label>
Copier après la connexion

Code

TableStyle Bootstrap Style WPF

code

Form

WPF n'a pas la notion de formulaire, donc les instructions ne sont pas dans l'ordre des documents officiels

Zone de saisie de texte

<DataGrid AutoGenerateColumns="False" DataContext="{Binding Source={StaticResource SampleDataSource}}" ItemsSource="{Binding Collection}">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding Property1}" Header="Property1" ElementStyle="{StaticResource DataGridTextCenter}"/>
<DataGridTextColumn Binding="{Binding Property2}" Header="Property2" ElementStyle="{StaticResource DataGridTextCenter}"/>
<DataGridTextColumn Binding="{Binding Property3}" Header="Property3" ElementStyle="{StaticResource DataGridTextCenter}"/>
</DataGrid.Columns>
</DataGrid>
Copier après la connexion
La taille du contrôle de style ne prend en charge que le style par défaut

Effet

Boîte de mot de passe

La taille du contrôle de style ne prend en charge que le style par défaut

EffetStyle Bootstrap Style WPF

Code

La case à cocher Style est quelque peu différente de Bootstrap. J'ai écrit mon propre style

Style Bootstrap Style WPF Effet

<PasswordBox Password="PasswordBox"/>
<PasswordBox Password="PasswordBox IsEnabled=False" IsEnabled="False"/>
<PasswordBox Password="PasswordBox has-success" Style="{StaticResource has-success}"/>
<PasswordBox Password="PasswordBox has-warning" Style="{StaticResource has-warning}"/>
<PasswordBox Password="PasswordBox has-error" Style="{StaticResource has-error}"/>
<PasswordBox Password="PasswordBox input-sm" Style="{StaticResource input-sm}"/>
<PasswordBox Password="PasswordBox input-lg" Style="{StaticResource input-lg}"/>
Copier après la connexion
.

Code

;Le style radio est quelque peu différent du style Bootstrap écrit par moi-même

Style Bootstrap Style WPFEffet

<CheckBox Content="default"></CheckBox>
<CheckBox Content="checkbox has-success" Style="{DynamicResource checkbox has-success}" IsChecked="{x:Null}"></CheckBox>
<CheckBox Content="checkbox has-warning" Style="{DynamicResource checkbox has-warning}" IsChecked="False"></CheckBox>
<CheckBox Content="checkbox has-error" Style="{DynamicResource checkbox has-error}" IsChecked="True"></CheckBox>
Copier après la connexion

Code<. 🎜>

Boîte déroulante

capture d'écran gif car l'effet déroulant

n'est pas visibleStyle Bootstrap Style WPF

<RadioButton Content="default"></RadioButton>
<RadioButton Content="radio has-success" Style="{DynamicResource radio has-success}"></RadioButton>
<RadioButton Content="radio has-warning" Style="{DynamicResource radio has-warning}"></RadioButton>
<RadioButton Content="radio has-error" Style="{DynamicResource radio has-error}" IsChecked="True"></RadioButton>
Copier après la connexion
code

bouton

< ;Bouton> style btn

code

Style Bootstrap Style WPFBouton bascule

. Il est identique au bouton. L'effet d'appuyer dessus est l'effet de cliquer sur le bouton

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal