문제

Please forgive the noob question but I'm going round in circles and need answers...

Anyway, I've been looking at this article WPF: How to bind RadioButtons to an enum? but I just can't get the convertor to be recognised within the XAML file.

<Window x:Class="Widget.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:dg="http://schemas.microsoft.com/wpf/2008/toolkit"
    Title="Widget" Height="366" Width="588" WindowStyle="SingleBorderWindow">
    <Window.Resources>
        <EnumBooleanConverter x:Key="enumBooleanConverter" />
    </Window.Resources>
...

I have a seperate file holding the EnumBooleanConverter class but the above reference gives me the following error:

Error 1 The tag 'EnumBooleanConverter' does not exist in XML namespace 'http://schemas.microsoft.com/winfx/2006/xaml/presentation'.

I've tried adding references to the assembly and then appending the tag to the XAML but to no avail.

<Window x:Class="Widget.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:dg="http://schemas.microsoft.com/wpf/2008/toolkit"
    xmlns:local="clr-namespace:Widget;assembly=Widget"
    Title="Widget" Height="366" Width="588" WindowStyle="SingleBorderWindow">
    <Window.Resources>
        <local:EnumBooleanConverter x:Key="enumBooleanConverter" />
    </Window.Resources>
...

Any help would be greatly appreciated.

도움이 되었습니까?

해결책

YES, SharePoint 온라인은 외부 사용자 / 고객과 함께 외부 사용자 / 고객과 정보 공유를 지원하지 않아도됩니다.

그러나 이것은 (4) 지불 사용자 중 한 명이 외부 사용자를 SharePoint 사이트로 '초대'한 경우에만 작동합니다.외부 사용자는 초대장 이메일을 받게됩니다.이 사용자에 대해 Microsoft 계정에 로그인 할 때 (또는 기존의 기존과 연결)이 사용자 (이메일 주소를 사용하여 사용자 이름으로 사용)

익명 사이트는 허용되지 않습니다.사용자는 항상 로그인해야합니다.

한 번에 100 개의 업로드 만 지원됩니다.2GB는 최대 파일 크기이며 특정 파일 형식이 보안상의 이유로 차단됩니다 (DLL, EXE, SHTML, JSON, ASP 등 ...)

외부 사용자의 양에도 최대가 있지만 SharePoint 온라인 가입에 따라 다르 듯이 그렇게합니다."Enterprise Plan"은 10.000 외부 사용자입니다.

다른 팁

Make sure EnumBooleanConverter is publicly accessible and it has a public empty constructor.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top