Desktop to Control : Binding « Windows Presentation Foundation « C# / C Sharp






Desktop to Control

Desktop to Control
   

<Window  
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="SDKSample.SampleViewer"
    Title="Examples" >

   <Canvas> 
        <Button Width="120" Height="20">
          <Button.Background>
            <LinearGradientBrush>
              <LinearGradientBrush.GradientStops>
                  <GradientStop Offset="0" Color="{x:Static SystemColors.DesktopColor}"/>
                  <GradientStop Offset="1" Color="{x:Static SystemColors.ControlColor}"/>
              </LinearGradientBrush.GradientStops>
            </LinearGradientBrush>
          </Button.Background>
        </Button> 

   </Canvas> 


</Window>

   
    
    
  








Related examples in the same category

1.Bind property of one instantiated controlBind property of one instantiated control
2.Bind to Window itselfBind to Window itself
3.Two level path bindingTwo level path binding
4.Bind RelativeSource's AncestorTypeBind RelativeSource's AncestorType
5.Bind RelativeSource's AncestorType's PathBind RelativeSource's AncestorType's Path
6.Bind Stroke Thickness to SliderBind Stroke Thickness to Slider
7.Bind current time to ButtonBind current time to Button
8.Bind Label To ScrollBarBind Label To ScrollBar
9.Bind ScrollBar To LabelBind ScrollBar To Label
10.Binding With Data ContextBinding With Data Context
11.Long Binding PathLong Binding Path
12.Bind ListBox ItemsSource to DayNames property of DateTimeFormatInfoBind ListBox ItemsSource to DayNames property of DateTimeFormatInfo
13.Bind TextBlock Text to SelectedItem property of ListBoxBind TextBlock Text to SelectedItem property of ListBox
14.Bind To TextBox Back and ForthBind To TextBox Back and Forth
15.Binding FontFamily / FontSize value for current ControlBinding FontFamily / FontSize value for current Control
16.Bind to a Collection with the Master-Detail PatternBind to a Collection with the Master-Detail Pattern
17.Bind to IDataErrorInfo
18.Bind to a collectionBind to a collection
19.DataTemplate for bindingDataTemplate for binding
20.Binding Environment InfoBinding Environment Info
21.Bind to an ADO.NETDataSetBind to an ADO.NETDataSet
22.Add a value converter to a binding using XAMLAdd a value converter to a binding using XAML
23.Custom Dialog with data binding
24.One way and two way bindingOne way and two way binding
25.Object BindingObject Binding
26.Without BindingWithout Binding
27.Master Detail BindingMaster Detail Binding
28.Data binding using collections composed of mixed types of data.Data binding using collections composed of mixed types of data.
29.Text Data BindingText Data Binding
30.List BindingList Binding
31.Async bindingAsync binding
32.Null property bindingNull property binding
33.Binding Property with ExceptionBinding Property with Exception
34.Hierarchical Binding for three level nested objectsHierarchical Binding for three level nested objects
35.BindingOperations.GetBindingExpressionBindingOperations.GetBindingExpression
36.Collection View Source BindingCollection View Source Binding
37.Bind to enum typesBind to enum types
38.Bind to a MethodBind to a Method
39.Bind an ItemsControl to the CollectionViewSource, Set its DisplayMemberPath to display the Name propertyBind an ItemsControl to the CollectionViewSource, Set its DisplayMemberPath to display the Name property
40.Bind to the Values of an EnumerationBind to the Values of an Enumeration
41.Binding Dependency Property to TextBlockBinding Dependency Property to TextBlock
42.Bind Your Objects to UI Control with PropertyBind Your Objects to UI Control with Property
43.Implement INotifyPropertyChanged to notify the binding targets when the values of properties change.Implement INotifyPropertyChanged to notify the binding targets when the values of properties change.
44.Bind to an Existing Object InstanceBind to an Existing Object Instance
45.Digital ClockDigital Clock
46.Formatted Digital ClockFormatted Digital Clock
47.Manual Update TargetManual Update Target
48.Property changed callbackProperty changed callback