PresentationTraceSources

There are 1 entries for the tag PresentationTraceSources
PresentationTraceSources.TraceLevel e Databinding

Capire perchè un binding non funziona come dovrebbe in WPF non è molto semplice, immaginiamo questa semplice situazione: XAML <Window x:Class="WPF_Databind.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300"> <Grid> <TextBox Text="{Binding Path=CustomerName}" Height="23" Margin="87,65,71,0" Name="textBox1" VerticalAlignment="Top" /> </Grid> </Window> Codice namespace WPF_Databind { public partial class Window1 : Window ...

posted @ venerdì 28 marzo 2008 12:28 | Feedback (0)