一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

WPF 員工卡條形碼

     大家都知道條形碼(Barcode)是一種可以由機器識別的特殊編碼,在生產、生活中也常常會見到并使用它。條形碼的類型和種類很多感興趣的朋友可以詳細了解一下。其中Code 39 可以說是一種最為常見并廣泛使用的字符與數字結合的編碼類型,本篇也將利用它制作一個帶有條形碼的員工卡應用程序。

     在公司內部員工卡是員工身份唯一的識別工具,同時也是考勤及門禁系統的主要信息來源。首先在WPF 中設計一個簡單的員工卡樣式,具備員工卡標識、員工相片、員工姓名等。

<Border CornerRadius="3" BorderBrush="Gray" BorderThickness="2" Background="White"        MouseLeftButtonDown="Border_MouseLeftButtonDown">    <Canvas x:Name="mainCanvas">        <Grid x:Name="closeBtn" Canvas.Left="330" Canvas.Top="0"               MouseLeftButtonDown="Close_MouseLeftButtonDown">            <Ellipse Height="15" Width="15" HorizontalAlignment="Center">                <Ellipse.Fill>                    <SolidColorBrush x:Name="ellipseColor"/>                </Ellipse.Fill>            </Ellipse>            <TextBlock Text="x" Margin="2,-2,2,2" HorizontalAlignment="Center">                <TextBlock.Foreground>                    <SolidColorBrush x:Name="textColor" Color="Gray"/>                </TextBlock.Foreground>            </TextBlock>        </Grid>        <Border BorderBrush="#FF54545C" Canvas.Top="25" CornerRadius="5"                Height="49" Width="339" Background="#FF2192C4" Canvas.Left="5">            <TextBlock Text="EMPLOYEE   CARD" Foreground="White" FontSize="20"                       VerticalAlignment="Center" HorizontalAlignment="Center"                       FontWeight="Black" FontFamily="Microsoft Sans Serif"/>        </Border>        <Grid Canvas.Left="96" Canvas.Top="78">            <Grid.RowDefinitions>                <RowDefinition />                <RowDefinition />            </Grid.RowDefinitions>            <Image Source="Images/cardpic.png" Grid.Row="0"/>            <TextBlock Text="Li Jing Ran" FontSize="30" FontWeight="Black"                        Grid.Row="1" HorizontalAlignment="Center"/>        </Grid>    </Canvas></Border>

Image

     代碼內容比較簡單,其中需要提一下的是x:Name 為closeBtn 的<Grid>,可以看到它包含了一個<Ellipse>和<Textblock>,它們的顏色填充方式看上去做的很復雜。其實是為了實現一個動態效果:當鼠標移動到關閉圖標上時,其<Ellipse>和<Textblock>會改變顏色(如下圖對比)。

normal   change

     該效果代碼如下,通過Window.Resources 設置一個ColorAnimation Storyboard,再通過MouseEnter、MouseLeave 來觸發Storyboard 動畫效果。

<Window.Resources>    <Storyboard x:Key="flashClose">        <ColorAnimation Storyboard.TargetName="ellipseColor"                         Storyboard.TargetProperty="Color"                        From="White" To="Gray" Duration="0:0:0.1"/>        <ColorAnimation Storyboard.TargetName="textColor"                         Storyboard.TargetProperty="Color"                        From="Gray" To="White" Duration="0:0:0.1"/>    </Storyboard></Window.Resources><Window.Triggers>    <EventTrigger SourceName="closeBtn" RoutedEvent="Grid.MouseEnter">        <BeginStoryboard x:Name="showClosBtn" Storyboard="{StaticResource flashClose}"/>    </EventTrigger>    <EventTrigger SourceName="closeBtn" RoutedEvent="Grid.MouseLeave">        <StopStoryboard BeginStoryboardName="showClosBtn"/>    </EventTrigger></Window.Triggers>

     完成上面的界面設計,最后只需在員工卡下放的空白處添加員工編號條形碼即可。首先在項目中加入Barcode 和Code39 類,我們要通過這兩個類完成條形碼的繪制工作。打開C#程序,編寫如下代碼。

定義編碼

     通過Barcodes 類創建一個新的條形碼,定義BarcodeType 為"Code39",編碼Data 為“10001”,如果需要校驗則將CheckDigit 設為"Yes"。其中thinWidth、thickWidth 用于定義黑白條碼的寬窄度。

Barcodes bb = new Barcodes();bb.BarcodeType = Barcodes.BarcodeEnum.Code39;bb.Data = "10001";bb.CheckDigit = Barcodes.YesNoEnum.Yes;bb.encode();int thinWidth;int thickWidth;thinWidth = 2;thickWidth = 3 * thinWidth;string outputString = bb.EncodedData;string humanText = bb.HumanText;

繪制條形碼

根據編碼(EncodedData)的長度利用Rectangle 類逐一繪制黑、白條碼,t 表示窄碼,w 表示寬碼。

int len = outputString.Length;int currentPos = 50;int currentTop = 340;int currentColor = 0;            for (int i = 0; i < len; i++){    Rectangle rect = new Rectangle();    rect.Height = 80;    if (currentColor == 0)    {        currentColor =  1;        rect.Fill = new SolidColorBrush(Colors.Black);    }    else    {        currentColor = 0;        rect.Fill = new SolidColorBrush(Colors.White);    }    Canvas.SetLeft(rect, currentPos);    Canvas.SetTop(rect, currentTop);    if (outputString[i] == 't')    {        rect.Width = thinWidth;        currentPos += thinWidth;    }    else if (outputString[i] == 'w')    {        rect.Width = thickWidth;        currentPos += thickWidth;    }                 mainCanvas.Children.Add(rect);}

添加可讀碼

最后在條形碼下方添加一行可讀碼,方便員工認讀條形碼內容,也就是將“10001”員工編號顯示出來。

TextBlock tb = new TextBlock();tb.Text = humanText;tb.FontSize = 25;tb.FontFamily = new FontFamily("Consolas");Rect rx = new Rect(0, 0, 0, 0);tb.Arrange(rx);Canvas.SetLeft(tb, 120);Canvas.SetTop(tb, currentTop + 80);mainCanvas.Children.Add(tb);

效果圖

最后運行下程序看看效果如何,當然條形碼內容可按各自需求添加任何字符或數字。

Image

源代碼下載

WPFBarcode.zip

NET技術WPF 員工卡條形碼,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 久久国产乱子伦精品免费不卡 | 国产亚洲精品九九久在线观看 | 国产成人久久精品麻豆二区 | 亚洲一区在线免费 | 国语自产拍在线观看任你躁 | 奇米亚洲春色 | 午夜黄大色黄大片美女图片 | 国产三级全黄在线观看 | 最新精品亚洲成a人在线观看 | 欧美日韩国产在线观看一区二区三区 | 五月婷婷之综合激情 | 国产亚洲精品俞拍视频 | 一级做性色a爰片久久毛片免费 | 色视频免费 | 综合精品视频 | 日本波多野结衣在线 | 欧美中文字幕一区二区三区 | 精品视频午夜一区二区 | 美女国内精品自产拍在线播放 | 色婷婷视频在线 | 国产成人久久精品 | 五月婷婷六月丁香在线 | 四虎永久在线精品视频免费观看 | 五月天最新网址 | 91精品国产福利尤物 | 国产网红在线观看 | 国产极品在线观看 | 狠狠色狠狠色综合网 | 欧美三级在线观看视频 | 点击进入不卡毛片免费观看 | 亚洲精品中文字幕乱码三区一二 | 久久伊人热精品老鸭窝 | 中文字幕一区二区在线视频 | 另类国产精品一区二区 | 色视频免费看 | 午夜国产大片免费观看 | 国产精品视频免费观看 | 国产精品好好热在线观看 | 精品久久中文网址 | 99在线精品日韩一区免费国产 | 爆操极品女神 |