zoukankan      html  css  js  c++  java
  • Element to Element Binding

    To help explain element to element binding in Silverlight, let's build a very simple application. The application will include a buttona a checkbox. When the checkbox is checked, the button is enabled, when the checkbox is unchecked. the button is disabled. Let's get started.

    1. Create a silverlight application in VS 2010. Name the project ElementBinding and allow VS to create a Web application project to host your application.

    2. Edit the mainPage.xmal file to add a StackPanel to the root Grid. Place a ToggleButton and CheckBOx named EnabledButton within that StackPanel so the ToggleButton appears above the CheckBox. Add a margin of 20 on the StackPanel and 2 on the ToggleButton and CheckBox to add some spacing between the controls. The Code for the page follows:

    <Grid x:Name="LayoutRoot" Background="White">
            <StackPanel Margin="20">
                <ToggleButton Margin="5" Content="Click to Toggle" />
                <CheckBox Margin="5" Content="Enable Button" IsChecked="True" />
            </StackPanel>
        </Grid>

    3. Next, we need to bind the ToggleButton's IsEnabled property to the checkbox's IsChecked property. We will do this with one way binding as described earlier before, and we will set the ElementName to EnableButton, which is the name we gave our CheckBox. The updated source code should nwo look like the following:

    4. That is it! No coding is required for this demo. Run the sample and will see that the ToggleButton is enabled.

    5. Now uncheck the Enable Button Checkbox and you will see that the ToggleButton is no longer enabled.

  • 相关阅读:
    session生命周期
    解决安装sql server 需要重启问题
    myeclipse + tomcat 项目自动部署
    JSP页面转向方式
    关于Response.redirect()方法
    MyEclipse修改项目名称后,部署到tomcat问题
    为Eclipse安装主题插件
    MyEclipse自定义快捷键
    如何查看JSP和Servlet版本
    Wannafly挑战赛2 C.Butterfly(线段树优化枚举)
  • 原文地址:https://www.cnblogs.com/jerrychenfly/p/2139305.html
Copyright © 2011-2022 走看看