子曾经曰过

  博客园  :: 首页  ::  ::  ::  :: 管理

文章分类 -  WPF

摘要:xaml文件<Window x:Class="WpfApplication2.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:src="clr-namespace:WpfApplication2" Title="MainWindow" Height="3 阅读全文
posted @ 2011-05-23 19:58 人的本质是什么?

摘要:View Code using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Imaging;using Syste 阅读全文
posted @ 2011-03-02 15:08 人的本质是什么?

摘要:控制项和控制项做BindingImage图片的高度随着Slider的滑动而改变,注意Binding ElementName=slider1,Path=Value。这句中,ElementName是Slider的Name属性,Path是指Slider的值属性Value,V要大写,C#区分大小写。 <Image Source="D:\temp\j.png" Height="{Binding ElementName=slider1,Path=Value }" Margin="28,0,0,60" Name="image1&qu 阅读全文
posted @ 2011-03-01 20:31 人的本质是什么?