Jump to content

Recommended Posts

Posted

Language: C#

Clientside

 

Hey there!

I discovered the RAGE.NUI.PauseMenu namespace on clientside and i tried to use some things like TabView and other stuff,

but nothing shows up.  How do I use them?

 

~ T0xicPo1nter

sPBt8Ik.png

 

Posted (edited)

try this:

 

public static TabView MainMenu;

 

and then

 

private void BuildMainMenu()
{
MainMenu = new TabView("The Title");

MainMenu.MoneySubtitle = "Lalala my name is jeff";

#region About
{
var welcomeItem = new TabTextItem("about", "About", "Author: Jeff");
MainMenu.Tabs.Add(welcomeItem);
}

#endregion

}

 

now you can use it with

BuildMainMenu();

 

have fun :)

Edited by Smileey

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...