created UIBarButtonItem
added Power Image to it.
barBtnPower = new UIBarButtonItem (UIImage.FromBundle ("Images/[email protected]")
, UIBarButtonItemStyle.Plain
, (sender, args) => {
});
button added to navigation Item on right side.
this.NavigationItem.SetRightBarButtonItem (barBtn_Logout, true);
Issue is [email protected] is in green colour. but after run the application its shows in blue.
Can any one advice what i have done wrong here.