Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. COThat looks like it's along the right lines... Having a little trouble implementing it though; it compiles, but at runtime it informs me that 'Provide value on 'System.Windows.StaticResourceExtension' threw an exception.', which I think is because of the `StaticResource` binding on the converter... Any ideas what I'm doing wrong?
      singulars
    2. COYou probably forgot to declare your converter in your XAML resources! When you add a converter you always have to do the following: In your `UserControl` (or `Window`, or `Page`, or... The first tag) opening tag, add: `xmlns:myTag="clr-namespace:MyConverterNamespace"` (of course, the `myTag` name is completely up to you. Visual Studio should propose to autocomplete the namespace anyway) Then, in your `Resources` (put it wherever it's needed), add : <myTag:MyConverter x:Key="MyConverter" /> => This will declare your converter in your `StaticResource`s =)
      singulars
    3. COAh, that explains a few things. I knew you had to do that, but apparently I was doing it wrong. Still throwing an error though... this is a weird one. If I take the StackPanel opening tag you suggested out and replace it with a basic `<StackPanel Orientation="Horizontal">` then it works, but with your version in, it throws an exception on the line BEFORE your bit, which is `<ad:DockableContent x:Name="Toolbar" Title="Tools" DockableStyle="AutoHide" IsCloseable="False">`. I can't seem to figure out why... Sorry to keep asking questions; I'm new to this.
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload