Search found 24 matches
- 04 Sep 2013, 02:24
- Forum: General Discussion
- Replies: 30
- Views: 11573
Re: Noob questions about wether some things are possible or
Hi, I copy pasted both source code you gave me for the cs and xaml file and i am still getting that parsing error. I named the cs file NumericUpDown.cs and the XAML NumericUpdown.xaml and placed them in the same folder which in my project is Assets/GUI/CustomControls. By doing that i get the followi...
- 04 Sep 2013, 01:30
- Forum: General Discussion
- Replies: 30
- Views: 11573
Re: Noob questions about wether some things are possible or
Hi,
About the UserControl, i am following this documentation :
Docs/Gui.Core.UserControlTutorial.html
In this documentation the XAML contains the keyword UserControl, if i must use another keyword, could you please tell me which one?
Thanks in advance.
About the UserControl, i am following this documentation :
Docs/Gui.Core.UserControlTutorial.html
In this documentation the XAML contains the keyword UserControl, if i must use another keyword, could you please tell me which one?
Thanks in advance.
- 03 Sep 2013, 15:49
- Forum: General Discussion
- Replies: 5
- Views: 2405
Re: Get a ListBoxItem when clicked.
Hi,
I'm new to this too but i think it should be this :
I'm new to this too but i think it should be this :
Code: Select all
void OnSelectedClick(BaseComponent sender, RoutedEventArgs args)
{
ListBoxItem listBoxItem = sender.As<ListBoxItem>();
}
- 02 Sep 2013, 06:57
- Forum: General Discussion
- Replies: 30
- Views: 11573
Re: Noob questions about wether some things are possible or
I thanks for this answer, i will use the last version of NoesisGUI a little bit before posting bug reports as i in the patch note that you improved the stability. I have another question. I am trying to create a custom control by following your tutorial, however i have a parsing error in unity when ...
- 29 Aug 2013, 19:22
- Forum: General Discussion
- Replies: 30
- Views: 11573
Re: Noob questions about wether some things are possible or
Hi, I have other remarks, i will continue putting them in this thread in order not to flood the forum. Stability : Unity crashes when i modify a script while in play mode. Features : Label doesn't behave the same in NoesisGUI and VisualStudio. The Background property doesn't seem to work with label....
- 27 Aug 2013, 20:58
- Forum: General Discussion
- Replies: 3
- Views: 2305
Re: Crash when using DirectX11 in Unity
Hi, I don't think that tesselation works with GL. Well, I guess i will disable the tesselation for now because i would really like to get the GUI up and running. Do you have an ETA for DirectX11 support? Also, i would suggest you to indicate that DirectX11 is not supported yet on the Unity Asset Sto...
- 27 Aug 2013, 17:43
- Forum: General Discussion
- Replies: 3
- Views: 2305
Crash when using DirectX11 in Unity
Hi, My game project is using tesselation so i need to enable DirectX 11. However when DirectX11 is enabled in Unity, when i hit play, if there is a NoesisGUI panel in the scene, it crashes. I know that NoesisGUI uses DirectX9, but i did not think that mattered as NoesisGUI renders GUI by itself. So ...
- 27 Aug 2013, 11:28
- Forum: General Discussion
- Replies: 30
- Views: 11573
Re: Noob questions about wether some things are possible or
Hi, Yes i understand bug correction is high priority. About your question, i get an Exception thrown by the Noesis.Error class, which makes sense. But, i have this behavior that i cannot exit play mode in the main Unity panel, i have to do it from the menu. However, i just found out that it is not r...
- 27 Aug 2013, 02:31
- Forum: General Discussion
- Replies: 30
- Views: 11573
Re: Noob questions about wether some things are possible or
Ok, i knew about the other method, but i preferred this one. It will do for now but is this feature on the roadmap? Thanks in advance. Edit : By the way, when i click play despite the error in PostProcess, Unity kind of bugs, it become impossible to stop the play mode by clicking on the button in th...
- 27 Aug 2013, 02:01
- Forum: General Discussion
- Replies: 30
- Views: 11573
Re: Noob questions about wether some things are possible or
Hi here is the XAMl in a file named Test.xaml : <Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility...