我有一个菜鸟问题,但是我找不到答案。我什至不知道如何问谷歌这个问题。
假设您拥有:
<Button.Tag>
<Binding ??? RelativeSource="{RelativeSource Mode=FindAncestor, AncestorType={x:Type StackPanel}, AncestorLevel=2}" />
</Button.Tag>
如何以这种方式进行操作?:
oStream.SaveToFile "C:\file.exe", 1 '1= no overwrite
我已经尝试过“内容”,“值”,“源” ..谢谢您的帮助!
答案 0 :(得分:2)
output = [sorted(i, key=lambda x: (x[::-1], len(x))) for i in l]
print(output)
--> [['banana', 'apple', 'grape', 'kiwi', 'pear'], ['bicycle', 'airplane', 'car', 'boat']]
等同于
<Button ...>
<Button.Tag>
<Binding .../>
</Button.Tag>
</Button>
但是,您缺少绑定的源属性路径。添加<Button Tag="{Binding ...}" />
:
Path="DataContext"