成员 - 像组合框一样的标签中的价值机制

时间:2016-08-10 08:35:35

标签: wpf

有没有办法在像comboboxes上的绑定这样的标签上使用绑定? E.g。

<Label Content="{Binding SomeID, Converter={StaticResource MyConverter}}" />

我可以使用这样的标签吗?我想根据 SomeID 设置标签的内容。

更新

感谢Clemens。我不知道转换器可以应用于标签。这就是诀窍:

    Sub Multiple()
    MyDir = ActiveWorkbook.Path
        strPath = MyDir & ":"

        strFile = Dir(strPath, MacID("TEXT"))

        'Loop through each file in the folder
        Do While Len(strFile) > 0
            If Right(strFile, 3) = "csv" Then
                Debug.Print strFile
                DoWork (strFile)
            End If

            strFile = Dir
        Loop
End Sub

Sub DoWork(wb As Workbook)
    With wb
        Range("E:E,K:K").Select
        Range("K1").Activate
        Selection.Delete Shift:=xlToLeft
        ActiveSheet.Range("b1").End(xlDown).Select
        ActiveCell.FormulaR1C1 = "=AVERAGE(R[-3]C:R[-1]C)/1000"
        ActiveSheet.Range("b1").End(xlDown).Select
        Selection.AutoFill Destination:=Range(ActiveCell, ActiveCell.Offset(0, 2)), Type:=xlFillDefault
        ActiveSheet.Range("e1").End(xlDown).Select
        ActiveCell.FormulaR1C1 = "=AVERAGE(R[-3]C:R[-1]C)"
        ActiveSheet.Range("e1").End(xlDown).Select
        Selection.AutoFill Destination:=Range(ActiveCell, ActiveCell.Offset(0, 4)), Type:=xlFillDefault
    End With
End Sub

MyConverter 执行简单查找并返回结果。

0 个答案:

没有答案