zoukankan      html  css  js  c++  java
  • WPF文本控件及实现(1)

    基础控件:<TextBlock Text="添加文字"

    FontFamily=" 字体

    "FontSize=" 字号" 

    FontWeight="设置文本粗细"

    Foreground="前景色(字体颜色)"
    TextAlignment="文本内容的水平对齐方式,默认值为left"
    TextTrimming="获取或设置在内容超出内容区域时要采用的文本剪裁行为,默认值为None">

    </TextBlock>

    代码如下:

    <Window x:Class="WPFextControl.MainWindow"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
            xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
            xmlns:local="clr-namespace:WPFextControl"
            mc:Ignorable="d"
            Title="MainWindow" Height="350" Width="525">
        <StackPanel >
            <TextBlock Text=" WPF TextBlock" FontFamily=" 宋体" FontSize=" 16" 
                       FontWeight="Bold" Foreground="Red" 
                       TextWrapping="NoWrap"  TextAlignment="Center"  ></TextBlock>
            <TextBlock Text="北方的春晨,依旧寒凉,紧紧地把体温拽在手心,阡陌荒凉,静默无声,我开始情不自禁幻想南国风情,应是花草丛丛,细雨蒙蒙。伞花美丽了巷陌,青阶,谁撑一把素洁的白伞,痴目远眺,一怀温情。而我的江北终究无法飞越你的江南,冷寒,笼袖。" 
                       FontFamily=" 宋体" FontSize=" 16" 
                       FontWeight="Bold" Foreground="Red" 
                        TextAlignment="Left"
                       TextTrimming="CharacterEllipsis"  ></TextBlock>
            
            <TextBlock Text="Muslims have been leaving Buddhist-majority Myanmar, also known as Burma, because they are not recognised as citizens of the country and face persecution. Many of the Bangladeshis at sea are thought to be economic migrants."                                 
                       FontFamily=" 宋体" FontSize=" 16" 
                       FontWeight="Bold" Foreground="Red" 
                        TextAlignment="Left"
                       TextTrimming="WordEllipsis"   ></TextBlock>
            
            <TextBlock Text="Muslims have been leaving Buddhist-majority Myanmar, also known as Burma, because they are not recognised as citizens of the country and face persecution. Many of the Bangladeshis at sea are thought to be economic migrants."              
                       FontFamily=" 宋体" FontSize=" 16" 
                       FontWeight="Bold" Foreground="Red" 
                       TextAlignment="Left"
                       TextTrimming="CharacterEllipsis"  ></TextBlock>
            <local:MyTextBox Loaded="MyTextBox_Loaded"></local:MyTextBox>
        </StackPanel >
    </Window>
  • 相关阅读:
    (原创)批处理中变量的用法
    (收藏)Android 的各种listener and states event
    (转)Android 、BlackBerry 文本对齐方式对比
    (转)Android中尺寸单位杂谈
    批处理文章集锦
    Launch custom android application from android browser
    【原创】我的批处理命令例子
    Android文字居中
    (转)androd之绘制文本(FontMetrics)
    (批处理之二):setlocal enabledelayedexpansion (详解)
  • 原文地址:https://www.cnblogs.com/programme-maker/p/10794758.html
Copyright © 2011-2022 走看看