Windows phone 8.1 is new to the world. The main function is clicking on the button. This function does not work properly, it is a Windows 8.1 phone. This behavior or I'm wrong.
The code below is used on the home page, but this code also calls from another class when clicked. I need to use the method below only on the home page.
Please check the code below and return me a good solution.
Check out my code:
public HomePage()
{
this.InitializeComponent();
Windows.Phone.UI.Input.HardwareButtons.BackPressed += HardwareButtons_BackPressed;
}
void HardwareButtons_BackPressed(object sender, BackPressedEventArgs e)
{
}
thank
source
share