wpf silverlight windows-phone-7 templatebinding

wpf - TemplateBinding no funciona en ciertos casos(cuando se usa TranslateTransform)



silverlight windows-phone-7 (2)

Así es como reproduje este problema en WPF:

Crea un control personalizado:

public class TestCustomControl : Control { static TestCustomControl() { DefaultStyleKeyProperty.OverrideMetadata(typeof(TestCustomControl), new FrameworkPropertyMetadata(typeof(TestCustomControl))); } public string Text { get { return (string)GetValue(TextProperty); } set { SetValue(TextProperty, value); } } // Using a DependencyProperty as the backing store for Text. This enables animation, styling, binding, etc... public static readonly DependencyProperty TextProperty = DependencyProperty.Register("Text", typeof(string), typeof(TestCustomControl), new PropertyMetadata("Hello")); public double OffSet { get { return (double)GetValue(OffSetProperty); } set { SetValue(OffSetProperty, value); } } // Using a DependencyProperty as the backing store for OffSet. This enables animation, styling, binding, etc... public static readonly DependencyProperty OffSetProperty = DependencyProperty.Register("OffSet", typeof(double), typeof(TestCustomControl), new PropertyMetadata(5.0)); }

Agregue un estilo para él en el archivo Generic.xaml:

<Style TargetType="local:TestCustomControl"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="local:TestCustomControl"> <Grid> <TextBlock Text="{TemplateBinding Text}"></TextBlock> <TextBlock Text="{TemplateBinding Text}"> <TextBlock.RenderTransform> <TranslateTransform X="{TemplateBinding OffSet}" Y="{TemplateBinding OffSet}"/> <!--<TranslateTransform X="10" Y="10"/>--> </TextBlock.RenderTransform> </TextBlock> </Grid> </ControlTemplate> </Setter.Value> </Setter>

Luego agréguelo a la ventana principal:

<local:TestCustomControl OffSet="32" Text="the off set is not working" FontSize="36"> </local:TestCustomControl>

Luego ejecuta la aplicación, resultó que el "Texto" funciona bien, pero el "OffSet" no funciona. Y probé algo similar en el entorno de desarrollo de Windows Phone 7, y obtuve el mismo resultado.

¿Cómo debo modificar el código para que OffSet funcione?

Gracias


Tratar:

{Binding Offset, RelativeSource={RelativeSource TemplatedParent}}


Tanto TemplateBing como RelativeSource no funcionan, así que olvídate si te estás orientando a WP7.0 (Silverlight 3). Use otras formas de solucionarlo. De hecho, cambié manualmente los valores X / Y de cada transformación cada vez que se cambia el "OffSet".