使用GetValue和SetValue来设置属性

GetValue和SetValue是在托管代码中直接获取或设置对象属性的一种方法,如下面例子:

<Rectangle x:Name="rect_MyRectangle" Width="100" Height="100" Fill="Blue"></Rectangle> <TextBlock x:Name="txb_MyText2" />


C#代码:

public yufa2()
        {
            InitializeComponent();//利用GetValue和SetValue
            double left = 400;
            double top = 30;
            double radius = 10;
            string width;
            string height;
            //设置矩形的位置
            rect_MyRectangle.SetValue(Canvas.LeftProperty, left);
            rect_MyRectangle.SetValue(Canvas.TopProperty, top);
            //设置矩形的圆角度
            rect_MyRectangle.SetValue(Rectangle.RadiusXProperty, radius);
            rect_MyRectangle.SetValue(Rectangle.RadiusYProperty, radius);
            //获取矩形的宽和高
            width = rect_MyRectangle.GetValue(Rectangle.WidthProperty).ToString();
            height = rect_MyRectangle.GetValue(Rectangle.HeightProperty).ToString();
            //输出文本
            txb_MyText2.Text = "矩形的宽是:" + width + " 高是:" + height;
            txb_MyText2.SetValue(Canvas.LeftProperty, 400.00);
        }

 

运行如图:


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
package org.fenet.javamail; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.Properties; /** * @ProjectName : JavaTest * @PackageName : org.fenet.javamail * @FileName : PropertiyFileReader.java * @Describe : * @CreateTime : 2008-9-3下午04:07:01 * @Author : xuebailong([email protected]) */ public class PropertiyFileReader { /* * 属性文件名, 包括路径 */ private String propertiesFileName = null; private Properties pro = null; public void setPropertiesFileName(String propertiesFileName) { this.propertiesFileName = propertiesFileName; } public PropertiyFileReader() { } public PropertiyFileReader(String propertiesFileName) { this.propertiesFileName = propertiesFileName; } /* * 根据key * 得到属性文件的值 */ public String getValueByPropertyKey(String key) { String value = null; if (checkPropertyFile()) { value = getValue(key); } return value; } /* * get Value */ private String getValue(String key) { this.pro = new Properties(); String value = null; InputStream is = getPropertyFileInputStream(); try { pro.load(is); value = pro.getProperty(key); is.close(); } catch (IOException e) { e.printStackTrace(); } return value; } /* * set Value, * comments : 注释 */ private void setValue(String key, String value, String comments){ this.pro = new Properties(); this.pro.setProperty(key, value); OutputStream os = getPropertyFileOutputStream(); try { pro.store(os, comments); os.close(); } catch (IOException e) { e.printStackTrace(); } } /* * 得到文件输入句柄 */ private InputStream getPropertyFileInputStream() { InputStream is = null; try { if (checkPropertyFile()) { is = new FileInputStream(this.propertiesFileName); } } catch (FileNotFoundException e) { e.printStackTrace(); } return is; } /* * 得到文件输出句柄 */ private OutputStream getPropertyFileOutputStream(){ OutputStream os = null; try { if (checkPropertyFile()) { os = new FileOutputStream(this.propertiesFileName); } } catch (FileNotFoundException e) { e.printStackTrace(); } return os; } /* * 检查属性文件是否被设置值 */ private boolean checkPropertyFile() { if (this.propertiesFileName == null) { return false; } return true; } /** * @MethodName : main * @Author : xuebailong([email protected]) * @CreateTime : 2008-7-18下午04:36:58 * @Description: * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub PropertiyFileReader pfR = new PropertiyFileReader(); pfR.setPropertiesFileName("C:/TEMP/mail.properties"); String email = pfR.getValueByPropertyKey("name"); System.out.println(email); String key = "name"; String value = "xbl"; pfR.setValue(key, value, "This is my name "); } }

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值