Search found 66 matches

by ZanAlex
18 May 2015, 10:14
Forum: General Discussion
Replies: 4
Views: 2100

Re: Text drawn outside TextBox

Alright, the stencil surface fixes it, thank you again.
by ZanAlex
06 May 2015, 09:28
Forum: General Discussion
Replies: 4
Views: 2100

Re: Text drawn outside TextBox

Probably not, what is that? I haven't seen it in the tutorials.
by ZanAlex
05 May 2015, 16:58
Forum: General Discussion
Replies: 4
Views: 2100

Text drawn outside TextBox

Hello, I'm facing a weird problem with TextBox: http://i62.tinypic.com/2ed9x81.png I've noticed I have a similar problem when trying to use scrollable content, the supposed-to-be-hidden content is not clipped at all. However, I don't have the problem in the XamlPlayer. Is there something I'm missing...
by ZanAlex
27 Apr 2015, 18:12
Forum: General Discussion
Replies: 26
Views: 10984

Re: Specify ResourceDictionary and ResourceKey in Binding

Finally got time to try your solutionn, it's working exactly as expected. I did not think about adding attribute to converter object.

Thank you :)
by ZanAlex
14 Apr 2015, 18:51
Forum: General Discussion
Replies: 26
Views: 10984

Re: Specify ResourceDictionary and ResourceKey in Binding

How should I do if I want that dictionary to be chosen at runtime? My goal is basically to reproduce your localization sample: having one dictionary per language available and to choose the language from the C++ side, in order to load the proper strings and provide the proper dictionary to the UI si...
by ZanAlex
13 Apr 2015, 17:22
Forum: General Discussion
Replies: 26
Views: 10984

Re: Specify ResourceDictionary and ResourceKey in Binding

Hi, Sorry for the late answer, I couldn't try much further until now. I've tried to add it as a StaticResource that way: <Grid.Resources> <ResourceDictionary> <ResourceDictionary x:Key="Strings" Source="{Binding Localization}"/> </ResourceDictionary> </Grid.Resources> Localizatio...
by ZanAlex
08 Apr 2015, 09:29
Forum: General Discussion
Replies: 45
Views: 12924

Re: A few questions about some features

Hi,

I've let that part in stand-by for a quite a while now, I'll have another look at it and let you know if I encounter problems. I've learned quite a lot about the framework since then.

Thank you!
by ZanAlex
30 Mar 2015, 11:54
Forum: General Discussion
Replies: 26
Views: 10984

Re: Specify ResourceDictionary and ResourceKey in Binding

I think I did not understand correctly what you're saying. My understanding is that I can just add <ResourceDictionary x:Key="Localization" Source="localization.xaml"/> to Control's Resources everywhere and that the framework will only keep one instance of the dictionary? But the...
by ZanAlex
25 Mar 2015, 17:08
Forum: General Discussion
Replies: 18
Views: 9011

Re: Drag and Drop

I do appreciate that my remarks are being taken into account, thanks a lot about that :)
by ZanAlex
24 Mar 2015, 17:02
Forum: General Discussion
Replies: 18
Views: 9011

Re: Drag and Drop

Even though your example is very useful and the Drag'n Drop behaviour can be quite easily implemented, having the full set of DragEnter/DragOver/DragLeave/Drop events implemented would be very valuable. In this current state, one have to reimplement all of these behaviours with all the troubles caus...