0
我正在學習一個教程來實現一個值轉換器。我收到錯誤此代碼:錯誤Xaml命名空間
public class BooleanToVisibilityConverter : IValueConverter
{
//
}
<Application
x:Class="TestApp10.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:TestApp10"
RequestedTheme="Light">
<Application.Resources>
<local:BooleanToVisibilityConverter x:Key="TrueToVisibleConverter" />
<local:BooleanToVisibilityConverter x:Key="FalseToVisibleConverter" IsReversed="True" />
</Application.Resources>
我得到一個錯誤
「BooleanToVisibilityConverter」 這個名字並不在命名空間中存在 「使用:TestApp10」
該函數在App.xaml.cs文件中定義。
謝謝。
它解決了錯誤Thx。但代碼仍然不工作(http://stackoverflow.com/questions/39333533/trouble-binding-xaml-uwp) – rur2641