Last active
February 8, 2020 03:37
-
-
Save Aroueterra/76010a976aa30892d4b4b2ca4206fbce to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Implement these: | |
1. Book Request Form (Fund me page adds funds then triggers accepted ID with Title) | |
2. Search Method (Quick search: Late books; wanted books | |
3. Student Page | |
Helpful: | |
http://dspace.cusat.ac.in/jspui/bitstream/123456789/8218/1/library%20management%20system.pdf | |
https://core.ac.uk/download/pdf/61800086.pdf | |
For creating PDF use: Gembox | |
For excel operations use: Epplus |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
// in MainWindow.xaml.cs internal
internal static fooNameSpace.MainWindow tW1;
public partial class MainWindow
{
MakeStuffHappen helper = null;
public MainWindow()
{
OnInitialized += (s,e)=> { helper = new MakeStuffHappen(this.MyGridName); }
}
}
public class MakeStuffHappen
{
Grid theGrid = null;
public MakeStuffHappen(Grid grid)
{
theGrid = grid;
// Do stuff with the grid.
}
}