当在另一页中调整切换开关时,如何在主页面中将文本从大写转换为小写

时间:2012-03-04 13:37:33

标签: c# textblock windows-phone

如果在另一个示例页面中点击textblock,如何在主页面中将toggleswitch文本从上到下转换为

1 个答案:

答案 0 :(得分:1)

通过页面我猜测另一个类,我也猜测这是winForms,为了做到这一点,你可以有一个事件,那个有文本的类听,然后转换它。

例如

//add this where you start your form
page2.radiobutton.checkedChanged += onToggle;

//this function is what listens for the change
private void onToggle(object sender, EventArgs e)
{
      if(page2.radiobutton.Checked)
           textarea.text = textarea.text.tolower();
      else
            textarea.text = textarea.text.toupper();
}