kryptonDockingManager save file and load file not working after restart app
See original GitHub issuehi @ComponentFactory i am using vs 2015 community win 10
i am saving config file then close app then load here all is blank
This is my code
//load dock
private void loadDockToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{
kryptonDockingManager.LoadConfigFromFile(@"C:\Users\SWT\Desktop\setting.ss");
}
catch (Exception rr)
{
MessageBox.Show(rr.Message);
}
}
//save dock
private void saveDockToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{
kryptonDockingManager.SaveConfigToFile(@"C:\Users\SWT\Desktop\setting.ss");
}
catch (Exception rr)
{
MessageBox.Show(rr.Message);
}
}
Issue Analytics
- State:
- Created 4 years ago
- Comments:5
Top Results From Across the Web
Recently Active 'krypton' Questions
kryptonDockingManager save file and load file not working after restart app. i am using https://github.com/ComponentFactory/Krypton repo i am using vs 2015 ...
Read more >Reopen Documents on Solution load not working since ...
Since upgrading to 16.9 VS is not reopening on Solution load the files that were open at shutdown (I always use File ->...
Read more >Crash to desktop during loading screen, save file corrupted?
Hello, during my legendary campaign katarin, my game crashed after beating chaos realm for dark prince. Now everytime I try to load the...
Read more >[UWP] Problem when restart app on kiosk mode
On desktop mode, It works well with out any problem. After update process, the application will be restarted and the new version will...
Read more >C# (CSharp) KryptonWorkspaceCell Examples
Show file. /// <summary> /// Add a KryptonPage array to the currently active cell or create a new cell is no cell is...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
hello @AngeloCresta ?
you have an extra space " " in this row, after SaveConfigToFile: kryptonDockingManager.SaveConfigToFile (@“C:\Users\SWT\Desktop\setting.ss”);