public bool DeleteAllSamples(int index)
    {
        bool isDeleted = gr.deleteAllGestureSamples(index);

        if (isDeleted)
        {
            gestureList[index].SampleCount = 0;
        }

        return(isDeleted);
    }