Search found 22 matches

by weilitao
29 Dec 2017, 17:52
Forum: General Discussion
Replies: 8
Views: 2277

Re: Strange font rendering problem.

Hi sfernandez, Thanks for your reply. I have tested your 2 options. Option 2 works for me. I wondered why option 1 not work in my project, as your said it should work. Then I have fingered out the key point. In my xaml file, the header part is: <UserControl x:Class="Menus.Pages.TaskPage" x...
by weilitao
25 Dec 2017, 10:25
Forum: General Discussion
Replies: 8
Views: 2277

Re: Strange font rendering problem.

Hi, I have tested b12 version. The problem is still here.
by weilitao
13 Dec 2017, 04:07
Forum: General Discussion
Replies: 8
Views: 2277

Re: Strange font rendering problem.

Hi Sfernandez,
I have done as your said. No matter I set the FontFamily of UserControl in global resources or just inside the current wpf file, the chinese characters can not be displayed.
by weilitao
12 Dec 2017, 02:38
Forum: General Discussion
Replies: 8
Views: 2277

Strange font rendering problem.

Hi, Recently I have updated Noesis from 2.0.2f2 to 2.1.0b10. There are some problems when I try to display chinese characters. When I set FontFamily from a global resource xaml. Not all part of my page xaml can display chinese characters correctly. for example, this is my sample page xaml file: <Use...
by weilitao
12 Aug 2017, 15:03
Forum: General Discussion
Replies: 5
Views: 2361

Re: What's the best way to do sprite sheet animation?

Thanks, I have submitted a bug here(https://bugs.noesisengine.com/view.php?id=1130). Hope this bug can be fixed then we can make TexturePacker to produce resource xaml more efficient.
by weilitao
11 Aug 2017, 15:33
Forum: General Discussion
Replies: 5
Views: 2361

Re: What's the best way to do sprite sheet animation?

Thanks @sfernandez, Another thing related to sprite sheet animation. Does it possible to combine Viewbox and Viewport in ImageBrush? I'd like to use "trim" function to remove the transparency around sprite inside TexturePacker to reduce texture size. My sheet file just like this: <Resource...
by weilitao
08 Aug 2017, 17:21
Forum: General Discussion
Replies: 5
Views: 2361

What's the best way to do sprite sheet animation?

Hi, I need to do much sprite sheet animation in NoesisGUI, so I'd like to find some way to do this more efficient. From the official tutorial, I can use following code snippet to achieve this animation: <Storyboard RepeatBehavior="Forever"> <ObjectAnimationUsingKeyFrames Storyboard.TargetN...
by weilitao
28 Jul 2017, 10:47
Forum: General Discussion
Replies: 3
Views: 1366

Re: Animation's FillBehavior property set to "Stop" seems has no effect.

Hi sfernandez, I have found the problem here. If I start the storyboard with "storyboard.Begin(this)", everything works as expected, just like you demo. But if I start the storyboard with "Storyboard.Begin(this, true)", then the origin value will be lost. I have submitted a ticke...
by weilitao
25 Jul 2017, 07:18
Forum: General Discussion
Replies: 3
Views: 1366

Animation's FillBehavior property set to "Stop" seems has no effect.

Hi there, When setting Animation's FillBehavior to "Stop", is seem to have no effect. Which means when animation ended, it's still overriding the target property with animation value, but the expected result should be the target property value rollback to original. Below is my code sample:...
by weilitao
14 Jul 2017, 03:33
Forum: General Discussion
Replies: 3
Views: 3118

Re: Can Storyboard contain multiple animations targeting same property?

@sfernandez I have submitted the ticket(https://bugs.noesisengine.com/view.php?id=1124) Thanks for your advice. Since I need to combine some individual animations/storyboard to build a whole storyboard in code, so using keyframe is not easier. My current solution is to write some custom code which c...