Search found 18 matches

  • 1
  • 2
by tkawa
10 Aug 2021, 03:20
Forum: General Discussion
Replies: 7
Views: 9216

Re: Grid doesn't layout according to the ColumnDefinition

Thank you, I reported the issue here: https://www.noesisengine.com/bugs/view.php?id=2078
by tkawa
06 Aug 2021, 08:52
Forum: General Discussion
Replies: 7
Views: 9216

Grid doesn't layout according to the ColumnDefinition

Hi, In the code below, blue column width does not become the specified value. And, Text is cut off. This is a different behavior than WPF. <Grid Grid.Row="1" Width="100" Height="100"> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="*"/> <ColumnDefinit...
by tkawa
16 Oct 2019, 05:14
Forum: General Discussion
Replies: 3
Views: 1143

Re: [c++]About Style of ListViewItem

Thank you, I reported the issue here: #1570
by tkawa
08 Oct 2019, 13:07
Forum: General Discussion
Replies: 3
Views: 1143

[c++]About Style of ListViewItem

Hi, I found two different behaviors regarding the style of TextBlock created when specifying "DisplayMemberBinding". ・ VerticalAlignment of created TextBlock is not "Center" by default ・Style defined in Resources is not reflected Check the code below. <ListView Grid.Row="3&q...
by tkawa
26 Sep 2019, 14:13
Forum: General Discussion
Replies: 3
Views: 1404

[c++]How to bind FontSize and specify font size as "pt", "in" and "cm"

Hi, I try to bind FontSize and specify "pt". How to convert from NsString to float? In WPF, it can convert from string to double by FontSizeConverter(). XAML <TextBlock FontSize="{Binding FontSize}"... /> cpp float GetFontSize() const{ NsString fontSizeString = "20pt"; ...
by tkawa
03 Sep 2019, 06:06
Forum: General Discussion
Replies: 4
Views: 1475

Re: VisualBrush is doesn't work

I decided to solve it using ControlTemplate.
Thank you very much!!
by tkawa
29 Aug 2019, 08:21
Forum: General Discussion
Replies: 4
Views: 1475

Re: VisualBrush is doesn't work

Thank you for your reply. What do you want to achieve? I try to reuse icon images of SVG(XAML) as resources. It define VisualBrush of icon image as resource. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/win...
by tkawa
26 Aug 2019, 13:59
Forum: General Discussion
Replies: 4
Views: 1475

VisualBrush is doesn't work

Hi, VisualBrush is already supported, right? https://www.noesisengine.com/docs/Gui.Core._VisualBrush.html I confirmed to exist VisualBrush.h/.cpp files. The following code displays correctly in WPF, but noesis is not. <Grid> <Grid.Background> <VisualBrush> <VisualBrush.Visual> <Grid> <Label Backgrou...
by tkawa
26 Aug 2019, 13:37
Forum: General Discussion
Replies: 2
Views: 1257

Re: Optimizing Performance: 2D Graphics and Imaging

Thank you.
I requested here: https://www.noesisengine.com/bugs/view.php?id=1547
The fastest way to render 2D geometry would be to inherit from FrameworkElement and override the OnRender() method.
I see it. I try the way if really need it.
  • 1
  • 2