IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForApplication();
isf.DeleteFile("mydb.db");
using (SqliteConnection conn = new SqliteConnection())
{
...
Type: Posts; User: developer.hosny
IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForApplication();
isf.DeleteFile("mydb.db");
using (SqliteConnection conn = new SqliteConnection())
{
...
I'm solved it
public class mycls
{
public void m(UserControl p)
{
var x = p as friendspage;
x.txt1.Visibility = Visibility.Collapsed;...
hi
please i need to know how i can pass data from class to page
i have MainPage and Page1 and Class1
MainPage Content Page1
and i do some operation in Class1 after finished i want to do...