WPF中新增個簡單的顯示當前系統時間的示例

2021-09-06 03:20:09 字數 1571 閱讀 2634

東西很簡單,不過以前沒見過的話,如果讓人直接去實現,還得查查資料,用的東西很少

建乙個wpf工程,當然silverlight也行,放置乙個 textblock 在面板上

**:<

grid

x:name

="layoutroot"

>

<

grid.background

>

<

lineargradientbrush

endpoint

="0.5,1"

startpoint

="0.5,0"

>

<

gradientstop

color

="black"

offset

="1"

/>

<

gradientstop

color

="#ff00d1ff"

/>

lineargradientbrush

>

grid.background

>

<

textblock

x:name

="tt"

fontsize

="30"

margin

="8,43,8,68"

="wrap"

>

<

textblock.foreground

>

<

lineargradientbrush

endpoint

="0.5,1"

startpoint

="0.5,0"

>

<

gradientstop

color

="black"

offset

="0"

/>

<

gradientstop

color

="#ffee580f"

offset

="1"

/>

lineargradientbrush

>

textblock.foreground

>

textblock

>

grid

>

下面就是後台c#裡的東西啦,也沒什麼東西,首先要為顯示當前系統時間起乙個timer。直接**:

namespace 顯示當前系統時間

//show timer by_songgp

public void showcurtimer(object sender, eventargs e)

", this.showcurrenttime);}}}

這裡記得要加乙個標頭檔案:using system.windows.threading;

搞定,執行一下看下效果吧。

預覽圖:

呼呼~~~

WPF之AnyCAD顯示3維座標系的方式

wpf之anycad顯示3維座標系的方式 1.新增anycad包的引用 2.定義anycadd的3d座標系,並與wpf控制項繫結 private anycad.presentation.renderwindow3d m renderview public anycad.presentation.re...

WPF中確保顯示ListBox選中的Item

wpf中沒有提供確保顯示listbox選中的item這個功能,因此寫了個函式來實現 public void ensurelistboxitemvisible listbox listbox,listboxitem selecteditem else if itemindex int scrollvi...

WPF中控制項的顯示與隱藏

visibility表示 獲取或設定此元素的使用者介面可見性,並且是依賴項屬性 子屬性值 說明visible 表示顯示元素 collapsed 表示不顯示 隱藏 元素,並且不在布局中為它保留空間 hidden 表示不顯示 隱藏 元素,但是在布局中為元素保留空間 3 例 a a.count 1 vis...