我正在開發UWP應用程序,並且我創建了新的用戶控件,並且想要將它綁定到控件的代碼中的依賴項屬性(不帶datacontext)。將UWP控件綁定到屬性後面的代碼
代碼背後:
public Brush Fill
{
get { return (Brush)GetValue(FillProperty); }
set { SetValue(FillProperty, value); }
}
// Using a DependencyProperty as the backing store for Fill. This enables animation, styling, binding, etc...
public static readonly DependencyProperty FillProperty =
DependencyProperty.Register("Fill", typeof(Brush), typeof(MyControl), new PropertyMetadata(new SolidColorBrush(Colors.Black)));
XAML:
...
<Grid>
<Path Fill="{Binding ????}" Stretch="Fill">
...
</Path>
</Grid>
我想我的路徑的填充屬性將代碼綁定到該屬性Fill
背後(數據上下文應持有不同的數據,所以我可以這裏不使用它)
我如何在UWP中做到這一點?