3
ডাব্লুপিএফ ডেটাবাইন্ডিং: আমি কীভাবে "প্যারেন্ট" ডেটা প্রসঙ্গে প্রবেশ করব?
আমার একটি উইন্ডোতে একটি তালিকা রয়েছে (নীচে দেখুন)। উইন্ডোটির DataContextদুটি বৈশিষ্ট্য রয়েছে Itemsএবং AllowItemCommand। উইন্ডোটির বিপরীতে সমাধান করার জন্য আমি কীভাবে Hyperlinkতার Commandসম্পত্তির বাধ্যবাধকতা পেতে পারি DataContext? <ListView ItemsSource="{Binding Items}"> <ListView.View> <GridView> <GridViewColumn Header="Action"> <GridViewColumn.CellTemplate> <DataTemplate> <StackPanel> <TextBlock> <!-- this binding is not working --> <Hyperlink Command="{Binding AllowItemCommand}" CommandParameter="{Binding .}"> …