private void LoadMainAutoRefreshingFrameFunctionInFrameOnClick(object sender, EventArgs e)
        {
            var function = new FrameFunction(true);

            LoadFunctionInFrame(function);
        }
        private void LoadFrameFunctionAsSubInFrameOnClick(object sender, EventArgs e)
        {
            var function = new FrameFunction(false);

            LoadFunctionInFrame(function, true);
        }