Search found 8 matches

by lysann.schlegel_pdx
03 Dec 2021, 10:43
Forum: General Discussion
Replies: 7
Views: 12011

Re: Avoiding binding errors when part of the path is null

I want to clarify something about your last example concerning point 1 and the logs generated by Blend when part of the path is null. Setting up a minimal example using your xaml: <Window x:Class="Game.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
by lysann.schlegel_pdx
03 Dec 2021, 10:42
Forum: General Discussion
Replies: 7
Views: 12011

Re: Avoiding binding errors when part of the path is null

I made a bug report for the log level difference here (which was point 5): https://www.noesisengine.com/bugs/view.php?id=2207
by lysann.schlegel_pdx
03 Dec 2021, 10:12
Forum: General Discussion
Replies: 3
Views: 4826

Re: Consider making Noesis StringFormat implementation public API

I finally got around to this: #2206
by lysann.schlegel_pdx
05 Nov 2021, 10:28
Forum: General Discussion
Replies: 3
Views: 4826

Consider making Noesis StringFormat implementation public API

When making a markup extension/converter I realized that I cannot easily provide a property to the user that behaves like StringFormat in a binding, as in, actually implementing the formatting itself. Since there is an implementation for it in the C++ SDK to support it for Bindings, it would be nice...
by lysann.schlegel_pdx
05 Nov 2021, 10:02
Forum: General Discussion
Replies: 7
Views: 12011

Re: Avoiding binding errors when part of the path is null

I agree with the above post in general. My thoughts are a bit more complicated, so let me write them down for your consideration: It's probably not too wrong to consider this an error if there is no FallbackValue. However if there is a FallbackValue, as far as I understand from the documentation tha...
by lysann.schlegel_pdx
03 Nov 2021, 17:36
Forum: General Discussion
Replies: 7
Views: 12011

Avoiding binding errors when part of the path is null

Simplified version of my XAML: <Border x:Name="owner" Height="20" Width="20" Visibility="{Binding Owner, Converter={StaticResource booleanToVisibilityConverter}}" ToolTip="{Binding Owner.Name}"> <TextBlock Text="{Binding Owner.Name}" /> </B...
by lysann.schlegel_pdx
18 Aug 2021, 17:38
Forum: General Discussion
Replies: 10
Views: 7482

Re: Feature requests: WebBrowser and RichTextBox

Replying to an old thread to ask about RichTextBox/FlowDocumentScrollViewer. I am looking into the things TextBlock with inlines cannot do for us, and it seems to boil down to indentation, like in indented lists. Notably continuing the indentation after an automatic word wrap in a multiline text is ...
by lysann.schlegel_pdx
11 Aug 2021, 10:49
Forum: General Discussion
Replies: 1
Views: 6335

Include Documentation

I'm in the process of getting myself familiarized with NoesisGUI, so started a simple sample application in C++. One obstacle that I think shouldn't be this big is figuring out what to include to get access to a certain class/function/macro. I cannot seem to find any documentation about it in the cl...